at v192 24 lines 713 B view raw
1{ stdenv, fetchurl, ocaml, findlib, type_conv, camlp4 }: 2 3assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.00"; 4 5stdenv.mkDerivation { 6 name = "ocaml-enumerate-111.08.00"; 7 8 src = fetchurl { 9 url = https://ocaml.janestreet.com/ocaml-core/111.08.00/individual/enumerate-111.08.00.tar.gz; 10 sha256 = "0b6mx5p01lcpimvak4wx6aj2119707wsfzd83rwgb91bhpgzh156"; 11 }; 12 13 buildInputs = [ ocaml findlib ]; 14 propagatedBuildInputs = [ type_conv camlp4 ]; 15 16 createFindlibDestdir = true; 17 18 meta = { 19 homepage = https://ocaml.janestreet.com/; 20 description = "Quotation expanders for enumerating finite types"; 21 license = stdenv.lib.licenses.asl20; 22 platforms = ocaml.meta.platforms; 23 }; 24}