mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 16:45:51 +03:00
ocamlPackages.bindlib: init at 6.0.0
This commit is contained in:
parent
4fe8af2162
commit
4f742d4535
31
pkgs/development/ocaml-modules/bindlib/default.nix
Normal file
31
pkgs/development/ocaml-modules/bindlib/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildDunePackage
|
||||
, earley
|
||||
, timed
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "bindlib";
|
||||
version = "6.0.0";
|
||||
|
||||
minimalOCamlVersion = "4.07";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rlepigre";
|
||||
repo = "ocaml-${pname}";
|
||||
rev = version;
|
||||
hash = "sha256-058yMbz9ExvgNG/kY9tPk70XSeVRSSKVg4n4F4fmPu4=";
|
||||
};
|
||||
|
||||
checkInputs = [ earley timed ];
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://rlepigre.github.io/ocaml-bindlib";
|
||||
description = "Efficient binder representation in Ocaml";
|
||||
license = licenses.gpl3;
|
||||
changelog = "https://github.com/rlepigre/ocaml-bindlib/raw/${version}/CHANGELOG.md";
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
@ -78,6 +78,8 @@ let
|
||||
|
||||
bigstring = callPackage ../development/ocaml-modules/bigstring { };
|
||||
|
||||
bindlib = callPackage ../development/ocaml-modules/bindlib { };
|
||||
|
||||
biocaml = callPackage ../development/ocaml-modules/biocaml { };
|
||||
|
||||
bistro = callPackage ../development/ocaml-modules/bistro { };
|
||||
|
Loading…
Reference in New Issue
Block a user