2021-01-13 18:00:00 -08:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, ronn, installShellFiles }:
|
2016-06-03 04:37:23 -07:00
|
|
|
|
2020-05-01 02:20:00 -07:00
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "git-lfs";
|
2021-03-27 04:15:05 -07:00
|
|
|
version = "2.13.3";
|
2016-06-03 04:37:23 -07:00
|
|
|
|
2016-06-06 03:26:56 -07:00
|
|
|
src = fetchFromGitHub {
|
2017-10-22 05:12:19 -07:00
|
|
|
rev = "v${version}";
|
2017-04-18 10:53:51 -07:00
|
|
|
owner = "git-lfs";
|
2016-06-06 03:26:56 -07:00
|
|
|
repo = "git-lfs";
|
2021-03-27 04:15:05 -07:00
|
|
|
sha256 = "sha256-T4s/xnu5nL6dkEIo7xGywaE+EPH2OnzsaCF9OCGu7WQ=";
|
2016-06-03 04:37:23 -07:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:20:00 -07:00
|
|
|
goPackagePath = "github.com/git-lfs/git-lfs";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ ronn installShellFiles ];
|
|
|
|
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X ${goPackagePath}/config.Vendor=${version} -X ${goPackagePath}/config.GitCommit=${src.rev}" ];
|
2019-09-10 13:54:37 -07:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2020-05-01 02:20:00 -07:00
|
|
|
postBuild = ''
|
|
|
|
make -C go/src/${goPackagePath} man
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2020-05-02 09:24:15 -07:00
|
|
|
installManPage go/src/${goPackagePath}/man/*.{1,5}
|
2020-05-01 02:20:00 -07:00
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2017-04-18 10:53:51 -07:00
|
|
|
description = "Git extension for versioning large files";
|
2020-04-01 23:31:32 -07:00
|
|
|
homepage = "https://git-lfs.github.com/";
|
2020-12-12 20:20:00 -08:00
|
|
|
changelog = "https://github.com/git-lfs/git-lfs/blob/v${version}/CHANGELOG.md";
|
2017-04-18 10:53:51 -07:00
|
|
|
license = [ licenses.mit ];
|
2020-05-01 02:20:00 -07:00
|
|
|
maintainers = [ maintainers.twey maintainers.marsam ];
|
2017-04-18 10:53:51 -07:00
|
|
|
};
|
2016-06-03 04:37:23 -07:00
|
|
|
}
|