biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / zipc / default.nix
bloba31d2644e668b5d271f0ff109ea291ad421fec09
1 { lib, stdenv, fetchurl
2 , ocaml, findlib, ocamlbuild, topkg, cmdliner
3 }:
5 lib.throwIfNot (lib.versionAtLeast ocaml.version "4.14")
6   "zipc is not available for OCaml ${ocaml.version}"
8 stdenv.mkDerivation rec {
9   pname = "ocaml${ocaml.version}-zipc";
10   version = "0.2.0";
12   src = fetchurl {
13     url = "https://erratique.ch/software/zipc/releases/zipc-${version}.tbz";
14     hash = "sha256-YQqkCURwrJgFH0+zgfket25zJQ4w+Tcc1mTSrDuWRt0=";
15   };
17   strictDeps = true;
19   nativeBuildInputs = [
20     ocaml findlib ocamlbuild
21   ];
23   buildInputs = [ cmdliner topkg ];
25   inherit (topkg) buildPhase installPhase;
27   meta = {
28     description = "ZIP archive and deflate codec for OCaml";
29     homepage = "https://erratique.ch/software/zipc";
30     license = lib.licenses.isc;
31     maintainers = [ lib.maintainers.vbgl ];
32   };