Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9afa6f74e59a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e922a458ca13
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 11, 2018

  1. Add HashDiff package

    tathougies committed Nov 11, 2018
    Copy the full SHA
    fa9fc8f View commit details

Commits on Nov 15, 2018

  1. Copy the full SHA
    bdb03ef View commit details
  2. Merge pull request #50243 from tathougies/travis/hash-diff

    perlPackages.HashDiff: init at 0.010
    Mic92 authored Nov 15, 2018
    Copy the full SHA
    e922a45 View commit details
Showing with 14 additions and 0 deletions.
  1. +14 −0 pkgs/top-level/perl-packages.nix
14 changes: 14 additions & 0 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
@@ -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 {