mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
perlPackages.CompressRawLzma: init at 2.101 (#142679)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
53963a8801
commit
aad67bd968
1 changed files with 20 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue