2021-01-21 19:13:25 +01:00
|
|
|
{ stdenv, lib, fetchurl, ocaml, findlib, cppo
|
|
|
|
# De facto, option minimal seems to be the default. See the README.
|
|
|
|
, minimal ? true
|
|
|
|
}:
|
2012-01-16 11:20:13 +01:00
|
|
|
|
2021-01-21 19:13:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "ocaml${ocaml.version}-extlib";
|
|
|
|
version = "1.7.8";
|
2012-01-16 11:20:13 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-21 19:13:25 +01:00
|
|
|
url = "https://ygrek.org/p/release/ocaml-extlib/extlib-${version}.tar.gz";
|
|
|
|
sha256 = "0npq4hq3zym8nmlyji7l5cqk6drx2rkcx73d60rxqh5g8dla8p4k";
|
2012-01-16 11:20:13 +01:00
|
|
|
};
|
|
|
|
|
2017-03-29 20:39:34 +02:00
|
|
|
buildInputs = [ ocaml findlib cppo ];
|
2012-01-16 11:20:13 +01:00
|
|
|
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
|
2021-01-21 19:13:25 +01:00
|
|
|
makeFlags = lib.optional minimal "minimal=1";
|
2012-01-16 11:20:13 +01:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/ygrek/ocaml-extlib";
|
2012-01-16 11:20:13 +01:00
|
|
|
description = "Enhancements to the OCaml Standard Library modules";
|
2021-01-21 19:13:25 +01:00
|
|
|
license = lib.licenses.lgpl21Only;
|
2015-12-24 18:49:07 +01:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2021-01-21 19:13:25 +01:00
|
|
|
maintainers = [ lib.maintainers.sternenseemann ];
|
2012-01-16 11:20:13 +01:00
|
|
|
};
|
|
|
|
}
|