diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 0e945ce1bff..be3e9b60f34 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -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 {