mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
0c5b09e106
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
25 lines
730 B
Nix
25 lines
730 B
Nix
{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "plzip";
|
|
version = "1.10";
|
|
outputs = [ "out" "man" "info" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/lzip/plzip/plzip-${version}.tar.lz";
|
|
sha256 = "62f16a67be0dabf0da7fd1cb7889fe5bfae3140cea6cafa1c39e7e35a5b3c661";
|
|
};
|
|
|
|
nativeBuildInputs = [ lzip texinfo ];
|
|
buildInputs = [ lzlib ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.nongnu.org/lzip/plzip.html";
|
|
description = "A massively parallel lossless data compressor based on the lzlib compression library";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ _360ied ];
|
|
};
|
|
}
|