about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-06-09 18:48:22 -0500
committerGitHub <noreply@github.com>2020-06-09 18:48:22 -0500
commit926e8631bc21cb7da0c947c1b98de88e7eacc196 (patch)
treea12870fdae5237975550326f9655759bda95108f /pkgs/applications
parent7440f0f3862abcee9c352d8e898ff7da279a2780 (diff)
parent3d44c01fe39a5bce1b8fa934b00b41f311d5ebfe (diff)
downloadnixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.tar
nixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.tar.gz
nixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.tar.bz2
nixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.tar.lz
nixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.tar.xz
nixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.tar.zst
nixlib-926e8631bc21cb7da0c947c1b98de88e7eacc196.zip
Merge pull request #89969 from r-ryantm/auto-update/git-filter-repo
gitAndTools.git-filter-repo: 2.26.0 -> 2.27.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git-filter-repo/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git-filter-repo/default.nix b/pkgs/applications/version-management/git-and-tools/git-filter-repo/default.nix
index 0439669f9da5..78011604cdd7 100644
--- a/pkgs/applications/version-management/git-and-tools/git-filter-repo/default.nix
+++ b/pkgs/applications/version-management/git-and-tools/git-filter-repo/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "git-filter-repo";
-  version = "2.26.0";
+  version = "2.27.0";
 
   src = fetchurl {
     url = "https://github.com/newren/git-filter-repo/releases/download/v${version}/${pname}-${version}.tar.xz";
-    sha256 = "15d07i66b090bhjfj9s4s2s38k75mhxmddzyn44bnnyb967w6yjk";
+    sha256 = "1vry0pqwi0p82m3wflr0wyf88wn75l049w18xf9f5z43xd9vpva1";
   };
 
   buildInputs = [ pythonPackages.python ];
@@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/newren/git-filter-repo";
     description = "Quickly rewrite git repository history (filter-branch replacement)";
     license = licenses.mit;
+    inherit (pythonPackages.python.meta) platforms;
     maintainers = [ maintainers.marsam ];
   };
 }