lol

ocamlPackages.extlib: 1.6.1 -> 1.7.2

+6 -6
+6 -6
pkgs/development/ocaml-modules/extlib/default.nix
··· 1 - {stdenv, fetchurl, ocaml, findlib, camlp4, minimal ? true}: 2 3 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11"; 4 5 stdenv.mkDerivation { 6 - name = "ocaml-extlib-1.6.1"; 7 8 src = fetchurl { 9 - url = http://ocaml-extlib.googlecode.com/files/extlib-1.6.1.tar.gz; 10 - sha256 = "1jmfj2w0f3ap0swz8k3qqmrl6x2y4gkmg88vv024xnmliiiv7m48"; 11 }; 12 13 - buildInputs = [ocaml findlib camlp4]; 14 15 createFindlibDestdir = true; 16 ··· 20 installPhase = "make ${if minimal then "minimal=1" else ""} install"; 21 22 meta = { 23 - homepage = http://code.google.com/p/ocaml-extlib/; 24 description = "Enhancements to the OCaml Standard Library modules"; 25 license = stdenv.lib.licenses.lgpl21; 26 platforms = ocaml.meta.platforms or [];
··· 1 + { stdenv, fetchurl, ocaml, findlib, cppo, minimal ? true }: 2 3 assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11"; 4 5 stdenv.mkDerivation { 6 + name = "ocaml-extlib-1.7.2"; 7 8 src = fetchurl { 9 + url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.2.tar.gz; 10 + sha256 = "0r7mhfgh6n5chj9r12s2x1fxrzvh6nm8h80ykl1mr75j86za41bm"; 11 }; 12 13 + buildInputs = [ ocaml findlib cppo ]; 14 15 createFindlibDestdir = true; 16 ··· 20 installPhase = "make ${if minimal then "minimal=1" else ""} install"; 21 22 meta = { 23 + homepage = https://github.com/ygrek/ocaml-extlib; 24 description = "Enhancements to the OCaml Standard Library modules"; 25 license = stdenv.lib.licenses.lgpl21; 26 platforms = ocaml.meta.platforms or [];