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
46 lines
859 B
Nix
46 lines
859 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
lzip,
|
|
lzlib,
|
|
texinfo,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "plzip";
|
|
version = "1.12";
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"info"
|
|
];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/lzip/plzip/plzip-${finalAttrs.version}.tar.lz";
|
|
hash = "sha256-RLvt4rLiOPBbmSEon5194ia3lYKmN2pdEOv8u4dxOoQ=";
|
|
# hash from release email
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
lzip
|
|
texinfo
|
|
];
|
|
buildInputs = [ lzlib ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://www.nongnu.org/lzip/plzip.html";
|
|
description = "Massively parallel lossless data compressor based on the lzlib compression library";
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.all;
|
|
maintainers = with lib.maintainers; [
|
|
_360ied
|
|
];
|
|
mainProgram = "plzip";
|
|
};
|
|
})
|