1 { lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
3 stdenv.mkDerivation rec {
6 outputs = [ "out" "man" "info" ];
9 url = "mirror://savannah/lzip/plzip/plzip-${version}.tar.lz";
10 sha256 = "62f16a67be0dabf0da7fd1cb7889fe5bfae3140cea6cafa1c39e7e35a5b3c661";
13 nativeBuildInputs = [ lzip texinfo ];
14 buildInputs = [ lzlib ];
16 enableParallelBuilding = true;
19 homepage = "https://www.nongnu.org/lzip/plzip.html";
20 description = "A massively parallel lossless data compressor based on the lzlib compression library";
21 license = licenses.gpl2Plus;
22 platforms = platforms.all;
23 maintainers = with maintainers; [ _360ied ];