nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / development / ocaml-modules / ocaml-version / default.nix
blobe1839ad42e8c2565c3d8e8ecf2a922f64049d672
2   lib,
3   fetchurl,
4   buildDunePackage,
5   alcotest,
6 }:
8 buildDunePackage rec {
9   pname = "ocaml-version";
10   version = "3.6.9";
12   src = fetchurl {
13     url = "https://github.com/ocurrent/ocaml-version/releases/download/v${version}/ocaml-version-${version}.tbz";
14     hash = "sha256-NcelYCcDPooOP7GfWr2m27GDikKiMqezcvRfFmBzlYY=";
15   };
17   checkInputs = [ alcotest ];
19   doCheck = true;
21   minimalOCamlVersion = "4.07";
22   duneVersion = "3";
24   meta = with lib; {
25     description = "Manipulate, parse and generate OCaml compiler version strings";
26     homepage = "https://github.com/ocurrent/ocaml-version";
27     license = licenses.isc;
28     maintainers = with maintainers; [ vbgl ];
29   };