summary refs log tree commit diff
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-08-07 17:10:52 +0200
committerGitHub <noreply@github.com>2018-08-07 17:10:52 +0200
commitf28850d40ad140045b1eb185fa4878aedbdf8cfa (patch)
treeeafdebc8c6bf9d5b3218f90d161177e440def499
parent33b71398fc132b1bee6affbc8b2503ee45fdeaff (diff)
parent9f452aaf41cc727b0f052bfacbb5bc9fd4a80789 (diff)
downloadnixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.tar
nixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.tar.gz
nixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.tar.bz2
nixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.tar.lz
nixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.tar.xz
nixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.tar.zst
nixpkgs-f28850d40ad140045b1eb185fa4878aedbdf8cfa.zip
Merge pull request #44619 from poelzi/perl-packages
Perl packages
-rw-r--r--pkgs/top-level/perl-packages.nix26
1 files changed, 26 insertions, 0 deletions
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 {