about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-05-26 18:50:11 -0500
committerGitHub <noreply@github.com>2022-05-26 18:50:11 -0500
commit297e869c2365bcb679f91c1e82150b479e60996b (patch)
treea3c2c96ef6fab6fb7e6eb3bdda8ffc61709f9de3 /pkgs
parentb7c860d80b0b98084272a40ad12665370f5e8549 (diff)
parent2e17187ebaf5f25427062fb6d869139485acda9a (diff)
Merge pull request #174666 from marsam/update-lfs
git-lfs: 3.1.4 -> 3.2.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/version-management/git-lfs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix
index 8871ac2306efd..936660cf7984a 100644
--- a/pkgs/applications/version-management/git-lfs/default.nix
+++ b/pkgs/applications/version-management/git-lfs/default.nix
@@ -2,13 +2,13 @@
 
 buildGoPackage rec {
   pname = "git-lfs";
-  version = "3.1.4";
+  version = "3.2.0";
 
   src = fetchFromGitHub {
     rev = "v${version}";
     owner = "git-lfs";
     repo = "git-lfs";
-    sha256 = "sha256-dGqb7gw7l2SPGwhHIFbEq6XqMB9QRw3+3Pfbk2S4kW4=";
+    sha256 = "sha256-3gVUPfZs5GViEA3D7Zm5NdxhuEz9DhwPLoQqHFdGCrI=";
   };
 
   goPackagePath = "github.com/git-lfs/git-lfs";
@@ -30,7 +30,7 @@ buildGoPackage rec {
   '';
 
   postInstall = ''
-    installManPage go/src/${goPackagePath}/man/*.{1,5}
+    installManPage go/src/${goPackagePath}/man/man*/*
   '';
 
   meta = with lib; {