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: 5eb2125cb47b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c351f2877ccc
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 26, 2020

  1. Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    a7971df View commit details
  2. Merge pull request #85654 from DamienCassou/damien/git-autofixup

    perlPackages.GitAutofixup: init at 0.002007
    worldofpeace authored Apr 26, 2020

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    c351f28 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
@@ -7878,6 +7878,20 @@ let
};
};

GitAutofixup = buildPerlPackage rec {
pname = "GitAutofixup";
version = "0.002007";
src = fetchurl {
url = "mirror://cpan/authors/id/T/TO/TORBIAK/App-Git-Autofixup-${version}.tar.gz";
sha256 = "1ydy15pibva0qr5vrv5mqyzw3zlc3wbszzv7932vh7m88vv6gfr6";
};
meta = {
maintainers = [ maintainers.DamienCassou ];
description = "Create fixup commits for topic branches";
license = stdenv.lib.licenses.artistic2;
};
};

GitPurePerl = buildPerlPackage {
pname = "Git-PurePerl";
version = "0.53";