at 23.05-pre 25 lines 730 B view raw
1{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }: 2 3stdenv.mkDerivation rec { 4 pname = "plzip"; 5 version = "1.10"; 6 outputs = [ "out" "man" "info" ]; 7 8 src = fetchurl { 9 url = "mirror://savannah/lzip/plzip/plzip-${version}.tar.lz"; 10 sha256 = "62f16a67be0dabf0da7fd1cb7889fe5bfae3140cea6cafa1c39e7e35a5b3c661"; 11 }; 12 13 nativeBuildInputs = [ lzip texinfo ]; 14 buildInputs = [ lzlib ]; 15 16 enableParallelBuilding = true; 17 18 meta = with lib; { 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 ]; 24 }; 25}