depot/third_party/nixpkgs/pkgs/by-name/pl/plzip/package.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
833 B
Nix

{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
stdenv.mkDerivation (finalAttrs: {
pname = "plzip";
version = "1.11";
outputs = [ "out" "man" "info" ];
src = fetchurl {
url = "mirror://savannah/lzip/plzip/plzip-${finalAttrs.version}.tar.lz";
sha256 = "51f48d33df659bb3e1e7e418275e922ad752615a5bc984139da08f1e6d7d10fd";
# 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 ehmry ];
mainProgram = "plzip";
};
})