ocamlPackages.bz2: init at 0.7.0

Closes #126469
This commit is contained in:
superherointj 2021-06-10 16:23:06 +02:00 committed by Vincent Laporte
parent 5e78bbcb49
commit 3912cf9371
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ lib, stdenv, fetchFromGitLab, ocaml, findlib, bzip2, autoreconfHook }:
if !lib.versionAtLeast ocaml.version "4.02"
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
];
buildInputs = [
ocaml
findlib
bzip2
];
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 = with maintainers; [ superherointj ];
};
}

View File

@ -80,6 +80,8 @@ let
bos = callPackage ../development/ocaml-modules/bos { };
bz2 = callPackage ../development/ocaml-modules/bz2 { };
ca-certs = callPackage ../development/ocaml-modules/ca-certs { };
ca-certs-nss = callPackage ../development/ocaml-modules/ca-certs-nss { };