5fabc510aa
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/ocaml-extlib/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 1.7.4 with grep in /nix/store/dvi3qa5d9bkfr31vdwf1q87bh79jjh0n-ocaml-extlib-1.7.4 - directory tree listing: https://gist.github.com/7757241c8441089d6d514b9245f26bfd
29 lines
927 B
Nix
29 lines
927 B
Nix
{ 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";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib cppo ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
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 = {
|
|
homepage = https://github.com/ygrek/ocaml-extlib;
|
|
description = "Enhancements to the OCaml Standard Library modules";
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
platforms = ocaml.meta.platforms or [];
|
|
};
|
|
}
|