summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-04-01 23:31:32 -0700
committerAlyssa Ross <hi@alyssa.is>2020-04-02 16:11:45 +0000
commit5c171862b6ef1ed60ee2675afe1eba671c76716f (patch)
treeea4fce1addb0d5d8f94c9472d99ef91d6aaf04f2 /pkgs/applications/version-management
parent044dfab5a4b8b449ec51d5af33549f673936ee22 (diff)
downloadnixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.tar
nixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.tar.gz
nixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.tar.bz2
nixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.tar.lz
nixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.tar.xz
nixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.tar.zst
nixpkgs-5c171862b6ef1ed60ee2675afe1eba671c76716f.zip
git-lfs: 2.8.0 -> 2.10.0
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-lfs/default.nix17
1 files changed, 6 insertions, 11 deletions
diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix
index f2d87fd69dd..eca841350de 100644
--- a/pkgs/applications/version-management/git-lfs/default.nix
+++ b/pkgs/applications/version-management/git-lfs/default.nix
@@ -1,28 +1,23 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub }:
 
-buildGoPackage rec {
+buildGoModule rec {
   pname = "git-lfs";
-  version = "2.8.0";
+  version = "2.10.0";
 
   src = fetchFromGitHub {
     rev = "v${version}";
     owner = "git-lfs";
     repo = "git-lfs";
-    sha256 = "17x9q4g1acf51bxr9lfmd2ym7w740n4ghdi0ncmma77kwabw9d3x";
+    sha256 = "1y5ryk0iz5g5sqaw79ml6fr5kvjgzcah481pk5qmnb2ipb1xlng9";
   };
 
-  goPackagePath = "github.com/git-lfs/git-lfs";
+  modSha256 = "1rvvgyg4gqbli4pwfnmyz59gf14k7925mdqj6ykp542gwnsjgjp2";
 
   subPackages = [ "." ];
 
-  preBuild = ''
-    cd go/src/${goPackagePath}
-    go generate ./commands
-  '';
-
   meta = with stdenv.lib; {
     description = "Git extension for versioning large files";
-    homepage    = https://git-lfs.github.com/;
+    homepage    = "https://git-lfs.github.com/";
     license     = [ licenses.mit ];
     maintainers = [ maintainers.twey ];
   };