07d6a74cbb
GitOrigin-RevId: f5e8bdd07d1afaabf6b37afc5497b1e498b8046f
28 lines
739 B
Nix
28 lines
739 B
Nix
{ lib, fetchurl, buildDunePackage
|
|
, checkseum, bigarray-compat, optint
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
version = "1.2.0";
|
|
pname = "decompress";
|
|
|
|
minimumOCamlVersion = "4.07";
|
|
|
|
useDune2 = true;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/decompress/releases/download/v${version}/decompress-v${version}.tbz";
|
|
sha256 = "1c3sq9a6kpzl0pj3gmg7w18ssjjl70yv0r3l7qjprcncjx23v62i";
|
|
};
|
|
|
|
propagatedBuildInputs = [ optint bigarray-compat checkseum ];
|
|
# required hxd version is not available in nixpkgs
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Pure OCaml implementation of Zlib";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
homepage = "https://github.com/mirage/decompress";
|
|
};
|
|
}
|