Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #77418 from marsam/init-gitAndTools.git-filter-repo
Browse files Browse the repository at this point in the history
gitAndTools.git-filter-repo: init at 2.24.0
  • Loading branch information
marsam committed Feb 16, 2020
2 parents 7957f43 + bc6c029 commit a05d11a
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
Expand Up @@ -44,6 +44,10 @@ let

git-fame = callPackage ./git-fame {};

git-filter-repo = callPackage ./git-filter-repo {
pythonPackages = python3Packages;
};

gita = python3Packages.callPackage ./gita {};

# The full-featured Git.
Expand Down
@@ -0,0 +1,27 @@
{ stdenv, fetchurl, pythonPackages }:

stdenv.mkDerivation rec {
pname = "git-filter-repo";
version = "2.25.0";

src = fetchurl {
url = "https://github.com/newren/git-filter-repo/releases/download/v${version}/${pname}-${version}.tar.xz";
sha256 = "1772if8ajaw80dsdw4ic6vjw24dq0b9w87qlkn0iw4b8r9yxp37a";
};

buildInputs = [ pythonPackages.python ];

dontBuild = true;

installPhase = ''
install -Dm755 -t $out/bin git-filter-repo
install -Dm644 -t $out/share/man/man1 Documentation/man1/git-filter-repo.1
'';

meta = with stdenv.lib; {
homepage = "https://github.com/newren/git-filter-repo";
description = "Quickly rewrite git repository history (filter-branch replacement)";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}

0 comments on commit a05d11a

Please sign in to comment.