3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/git-lfs/default.nix

33 lines
725 B
Nix
Raw Normal View History

2017-04-18 18:53:51 +01:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-06-03 12:37:23 +01:00
buildGoPackage rec {
name = "git-lfs-${version}";
2018-09-17 21:04:22 +01:00
version = "2.5.2";
2017-04-18 18:53:51 +01:00
goPackagePath = "github.com/git-lfs/git-lfs";
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";
2018-09-17 21:04:22 +01:00
sha256 = "1y9l35j59d422v9hsbi117anm5d0177nspiy9r2zbjz3ygd9a4ck";
2016-06-03 12:37:23 +01:00
};
preBuild = ''
2017-04-18 18:53:51 +01:00
pushd go/src/github.com/git-lfs/git-lfs
go generate ./commands
2016-06-03 12:37:23 +01:00
popd
'';
postInstall = ''
2018-09-17 21:04:22 +01:00
rm -v $bin/bin/{man,script,cmd}
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
}