1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #84559 from deshaw/contrib/perl-rpm2

perlPackages.RPM2: init at 1.4
This commit is contained in:
Stig P 2020-09-14 13:53:04 +00:00 committed by GitHub
commit 0d82843d16
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17036,6 +17036,22 @@ let
};
};
RPM2 = buildPerlModule {
pname = "RPM2";
version = "1.4";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LK/LKUNDRAK/RPM2-1.4.tar.gz";
sha256 = "5ecb42aa69324e6f4088abfae07313906e5aabf2f46f1204f3f1de59155bb636";
};
buildInputs = [ pkgs.pkg-config pkgs.rpm ];
doCheck = false; # Tries to open /var/lib/rpm
meta = {
description = "Perl bindings for the RPM Package Manager API";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
platforms = stdenv.lib.platforms.linux;
};
};
RSSParserLite = buildPerlPackage {
pname = "RSS-Parser-Lite";
version = "0.12";