Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1013 B
Nix
52 lines
1013 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
ocaml,
|
|
findlib,
|
|
bzip2,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
if lib.versionOlder ocaml.version "4.02" || lib.versionAtLeast ocaml.version "5.0" then
|
|
throw "bz2 is not available for OCaml ${ocaml.version}"
|
|
else
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ocaml${ocaml.version}-bz2";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "irill";
|
|
repo = "camlbz2";
|
|
rev = version;
|
|
sha256 = "sha256-jBFEkLN2fbC3LxTu7C0iuhvNg64duuckBHWZoBxrV/U=";
|
|
};
|
|
|
|
autoreconfFlags = [
|
|
"-I"
|
|
"."
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
ocaml
|
|
findlib
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
bzip2
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
preInstall = "mkdir -p $OCAMLFIND_DESTDIR/stublibs";
|
|
|
|
meta = with lib; {
|
|
description = "OCaml bindings for the libbz2 (AKA, bzip2) (de)compression library";
|
|
downloadPage = "https://gitlab.com/irill/camlbz2";
|
|
license = licenses.lgpl21;
|
|
maintainers = [ ];
|
|
};
|
|
}
|