Merge pull request #165092 from vbgl/ocaml-enumerate-remove

authored by Sandro and committed by GitHub 384cbf46 78c4d439

-33
-31
pkgs/development/ocaml-modules/enumerate/default.nix
··· 1 - { stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, type_conv, camlp4 }: 2 - 3 - assert lib.versionAtLeast (lib.getVersion ocaml) "4.00"; 4 - 5 - if lib.versionAtLeast ocaml.version "4.06" 6 - then throw "enumerate-111.08.00 is not available for OCaml ${ocaml.version}" 7 - else 8 - 9 - stdenv.mkDerivation rec { 10 - pname = "ocaml-enumerate"; 11 - version = "111.08.00"; 12 - 13 - src = fetchurl { 14 - url = "https://ocaml.janestreet.com/ocaml-core/${lib.versions.majorMinor version}.00/individual/enumerate-${version}.tar.gz"; 15 - sha256 = "0b6mx5p01lcpimvak4wx6aj2119707wsfzd83rwgb91bhpgzh156"; 16 - }; 17 - 18 - nativeBuildInputs = [ ocaml findlib ocamlbuild ]; 19 - propagatedBuildInputs = [ type_conv camlp4 ]; 20 - 21 - strictDeps = true; 22 - 23 - createFindlibDestdir = true; 24 - 25 - meta = { 26 - homepage = "https://ocaml.janestreet.com/"; 27 - description = "Quotation expanders for enumerating finite types"; 28 - license = lib.licenses.asl20; 29 - platforms = ocaml.meta.platforms or [ ]; 30 - }; 31 - }
···
-2
pkgs/top-level/ocaml-packages.nix
··· 358 359 emile = callPackage ../development/ocaml-modules/emile { }; 360 361 - enumerate = callPackage ../development/ocaml-modules/enumerate { }; 362 - 363 eqaf = callPackage ../development/ocaml-modules/eqaf { }; 364 365 erm_xml = callPackage ../development/ocaml-modules/erm_xml { };
··· 358 359 emile = callPackage ../development/ocaml-modules/emile { }; 360 361 eqaf = callPackage ../development/ocaml-modules/eqaf { }; 362 363 erm_xml = callPackage ../development/ocaml-modules/erm_xml { };