nixpkgs/pkgs/development/ocaml-modules/extlib/default.nix

29 lines
927 B
Nix
Raw Normal View History

2017-03-29 19:39:34 +01:00
{ stdenv, fetchurl, ocaml, findlib, cppo, minimal ? true }:
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.11";
stdenv.mkDerivation {
name = "ocaml-extlib-1.7.4";
src = fetchurl {
url = http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.4.tar.gz;
sha256 = "18jb4rvkk6p3mqnkamwb41x8q49shgn43h020bs4cp4vac7nrhnr";
};
2017-03-29 19:39:34 +01:00
buildInputs = [ ocaml findlib cppo ];
createFindlibDestdir = true;
2014-01-31 12:59:44 +00:00
configurePhase = "true"; # Skip configure
# De facto, option minimal=1 seems to be the default. See the README.
buildPhase = "make ${if minimal then "minimal=1" else ""} build";
installPhase = "make ${if minimal then "minimal=1" else ""} install";
meta = {
2017-03-29 19:39:34 +01:00
homepage = https://github.com/ygrek/ocaml-extlib;
description = "Enhancements to the OCaml Standard Library modules";
2012-09-12 20:22:20 +01:00
license = stdenv.lib.licenses.lgpl21;
platforms = ocaml.meta.platforms or [];
};
}