Adds ocaml-enumerate
Quotation expanders for enumerating finite types in OCaml.
This commit is contained in:
parent
d1e302121a
commit
116ddda218
24
pkgs/development/ocaml-modules/enumerate/default.nix
Normal file
24
pkgs/development/ocaml-modules/enumerate/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, ocaml, findlib, type_conv, camlp4 }:
|
||||||
|
|
||||||
|
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00";
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "ocaml-enumerate-111.08.00";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = https://ocaml.janestreet.com/ocaml-core/111.08.00/individual/enumerate-111.08.00.tar.gz;
|
||||||
|
sha256 = "0b6mx5p01lcpimvak4wx6aj2119707wsfzd83rwgb91bhpgzh156";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ ocaml findlib ];
|
||||||
|
propagatedBuildInputs = [ type_conv camlp4 ];
|
||||||
|
|
||||||
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://ocaml.janestreet.com/;
|
||||||
|
description = "Quotation expanders for enumerating finite types";
|
||||||
|
license = stdenv.lib.licenses.asl20;
|
||||||
|
platforms = ocaml.meta.platforms;
|
||||||
|
};
|
||||||
|
}
|
@ -3898,6 +3898,10 @@ let
|
|||||||
|
|
||||||
eliom = callPackage ../development/ocaml-modules/eliom { };
|
eliom = callPackage ../development/ocaml-modules/eliom { };
|
||||||
|
|
||||||
|
enumerate = callPackage ../development/ocaml-modules/enumerate {
|
||||||
|
type_conv = ocaml_typeconv;
|
||||||
|
};
|
||||||
|
|
||||||
erm_xml = callPackage ../development/ocaml-modules/erm_xml { };
|
erm_xml = callPackage ../development/ocaml-modules/erm_xml { };
|
||||||
|
|
||||||
erm_xmpp = callPackage ../development/ocaml-modules/erm_xmpp { };
|
erm_xmpp = callPackage ../development/ocaml-modules/erm_xmpp { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user