biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / bindlib / default.nix
blobc0d8dd54a37bd17736b9a88001c2e52d9955f07f
1 { lib
2 , fetchFromGitHub
3 , buildDunePackage
4 , earley
5 , timed
6 }:
8 buildDunePackage rec {
9   pname = "bindlib";
10   version = "6.0.0";
12   minimalOCamlVersion = "4.07";
14   src = fetchFromGitHub {
15     owner = "rlepigre";
16     repo = "ocaml-${pname}";
17     rev = version;
18     hash = "sha256-058yMbz9ExvgNG/kY9tPk70XSeVRSSKVg4n4F4fmPu4=";
19   };
21   checkInputs = [ earley timed ];
22   doCheck = true;
24   meta = with lib; {
25     homepage = "https://rlepigre.github.io/ocaml-bindlib";
26     description = "Efficient binder representation in Ocaml";
27     license = licenses.gpl3;
28     changelog = "https://github.com/rlepigre/ocaml-bindlib/raw/${version}/CHANGELOG.md";
29     maintainers = with maintainers; [ bcdarwin ];
30   };