nixpkgs/pkgs/by-name/pl/plzip/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
835 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
2024-01-24 06:04:19 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "plzip";
2024-01-24 06:04:19 +00:00
version = "1.11";
outputs = [ "out" "man" "info" ];
src = fetchurl {
2024-01-24 06:04:19 +00:00
url = "mirror://savannah/lzip/plzip/plzip-${finalAttrs.version}.tar.lz";
sha256 = "51f48d33df659bb3e1e7e418275e922ad752615a5bc984139da08f1e6d7d10fd";
# hash from release email
};
nativeBuildInputs = [ lzip texinfo ];
buildInputs = [ lzlib ];
enableParallelBuilding = true;
2024-01-24 06:04:19 +00:00
doCheck = true;
meta = {
homepage = "https://www.nongnu.org/lzip/plzip.html";
description = "A massively parallel lossless data compressor based on the lzlib compression library";
2024-01-24 06:04:19 +00:00
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ _360ied ehmry ];
2023-11-23 02:51:17 +00:00
mainProgram = "plzip";
};
2024-01-24 06:04:19 +00:00
})