summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-11-15 11:30:13 +0000
committerGitHub <noreply@github.com>2018-11-15 11:30:13 +0000
commite922a458ca13563890d8c1d671a99812f2e98085 (patch)
treee191e2ed93f38beffa8b3a11303210696aef3c81 /pkgs/top-level
parent9afa6f74e59af09bc47bf69217d72b9999bccdd7 (diff)
parentbdb03ef4e8fc7711f6310955679df0694252e78f (diff)
downloadnixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.tar
nixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.tar.gz
nixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.tar.bz2
nixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.tar.lz
nixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.tar.xz
nixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.tar.zst
nixpkgs-e922a458ca13563890d8c1d671a99812f2e98085.zip
Merge pull request #50243 from tathougies/travis/hash-diff
perlPackages.HashDiff: init at 0.010
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/perl-packages.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index e94f8945d39..b440ce8b75d 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -6792,6 +6792,20 @@ let
     };
   };
 
+  HashDiff = buildPerlPackage rec {
+    name = "Hash-Diff-0.010";
+    src = fetchurl {
+      url = "mirror://cpan/authors/id/B/BO/BOLAV/${name}.tar.gz";
+      sha256 = "1ig0l859gq00k0r9l85274r2lbvwl7wsndcy52c0m3y9isilm6mw";
+    };
+    propagatedBuildInputs = [ HashMerge ];
+
+    meta = {
+      license = with stdenv.lib.licenses; [ artistic1 ];
+      description = "Return difference between two hashes as a hash";
+    };
+  };
+
   HashFlatten = buildPerlPackage rec {
     name = "Hash-Flatten-1.19";
     src = fetchurl {