perlPackages.CompressRawLzma: init at 2.101 (#142679)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
ius 2021-10-31 16:57:54 +01:00 committed by GitHub
parent 53963a8801
commit aad67bd968
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3518,6 +3518,26 @@ let
};
};
CompressRawLzma = buildPerlPackage {
pname = "Compress-Raw-Lzma";
version = "2.101";
src = fetchurl {
url = "mirror://cpan/authors/id/P/PM/PMQS/Compress-Raw-Lzma-2.101.tar.gz";
sha256 = "bb267fd31981eda11f444038f8a0fca4b94a51ae61b2db71246abf6a4d322a36";
};
preConfigure = ''
cat > config.in <<EOF
INCLUDE = ${pkgs.xz.dev}/include
LIB = ${pkgs.xz.out}/lib
EOF
'';
meta = {
homepage = "https://github.com/pmqs/Compress-Raw-Lzma";
description = "Low-Level Interface to lzma compression library";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};
CompressRawZlib = buildPerlPackage {
pname = "Compress-Raw-Zlib";
version = "2.096";