1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/ocaml-modules/extlib/default.nix

27 lines
759 B
Nix
Raw Normal View History

{stdenv, fetchurl, ocaml, findlib}:
stdenv.mkDerivation {
2014-01-31 12:59:44 +00:00
name = "ocaml-extlib-1.6.1";
src = fetchurl {
2014-01-31 12:59:44 +00:00
url = http://ocaml-extlib.googlecode.com/files/extlib-1.6.1.tar.gz;
sha256 = "1jmfj2w0f3ap0swz8k3qqmrl6x2y4gkmg88vv024xnmliiiv7m48";
};
buildInputs = [ocaml findlib];
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 minimal=1 build";
installPhase = "make minimal=1 install";
meta = {
2012-09-12 20:22:20 +01:00
homepage = http://code.google.com/p/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;
};
}