Merge pull request #44619 from poelzi/perl-packages

Perl packages
This commit is contained in:
xeji 2018-08-07 17:10:52 +02:00 committed by GitHub
commit f28850d40a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6096,6 +6096,19 @@ let self = _self // overrides; _self = with self; {
buildInputs = [ TestSharedFork ];
};
FilesysDiskUsage = buildPerlPackage rec {
name = "Filesys-DiskUsage-0.11";
src = fetchurl {
url = "mirror://cpan/authors/id/M/MA/MANWAR/${name}.tar.gz";
sha256 = "e69237c035e18a6ed69e36e058d7b3491d54a803a308f756e62a8e7f48b2a281";
};
buildInputs = [ TestWarn ];
meta = {
description = "Estimate file space usage (similar to `du`)";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
FileSlurp = buildPerlPackage {
name = "File-Slurp-9999.19";
# WARNING: check on next update if deprecation warning is gone
@ -13094,6 +13107,19 @@ let self = _self // overrides; _self = with self; {
};
};
RESTClient = buildPerlPackage rec {
name = "REST-Client-273";
src = fetchurl {
url = "mirror://cpan/authors/id/K/KK/KKANE/${name}.tar.gz";
sha256 = "a8652a2214308faff2c68be5ce64c904dcccc5e86be7f32376c1590869d01844";
};
propagatedBuildInputs = [ LWP LWPProtocolhttps URI ];
meta = {
description = "A simple client for interacting with RESTful http/https resources";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
RESTUtils = buildPerlModule {
name = "REST-Utils-0.6";
src = fetchurl {