1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-19 17:39:34 +00:00
nixpkgs/pkgs/applications/version-management/git-lfs/default.nix

30 lines
657 B
Nix
Raw Normal View History

2019-09-21 10:34:00 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-03 12:37:23 +01:00
2019-09-21 10:34:00 +01:00
buildGoPackage rec {
pname = "git-lfs";
version = "2.8.0";
2016-06-03 12:37:23 +01:00
src = fetchFromGitHub {
2017-10-22 13:12:19 +01:00
rev = "v${version}";
2017-04-18 18:53:51 +01:00
owner = "git-lfs";
repo = "git-lfs";
sha256 = "17x9q4g1acf51bxr9lfmd2ym7w740n4ghdi0ncmma77kwabw9d3x";
2016-06-03 12:37:23 +01:00
};
2019-09-21 10:34:00 +01:00
goPackagePath = "github.com/git-lfs/git-lfs";
subPackages = [ "." ];
2016-06-03 12:37:23 +01:00
preBuild = ''
2019-09-21 10:34:00 +01:00
cd go/src/${goPackagePath}
2017-04-18 18:53:51 +01:00
go generate ./commands
2016-06-03 12:37:23 +01:00
'';
2017-04-18 18:53:51 +01:00
meta = with stdenv.lib; {
description = "Git extension for versioning large files";
homepage = https://git-lfs.github.com/;
license = [ licenses.mit ];
maintainers = [ maintainers.twey ];
};
2016-06-03 12:37:23 +01:00
}