620eecebfb
GitOrigin-RevId: 2deb07f3ac4eeb5de1c12c4ba2911a2eb1f6ed61
37 lines
1,018 B
Nix
37 lines
1,018 B
Nix
{ lib, buildGoPackage, fetchFromGitHub, ronn, installShellFiles }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "git-lfs";
|
|
version = "3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "git-lfs";
|
|
repo = "git-lfs";
|
|
sha256 = "0989wai2k1gzkmwk5x6f6llsf0nn5jr5dpwayw4f8bws09da6dm6";
|
|
};
|
|
|
|
goPackagePath = "github.com/git-lfs/git-lfs";
|
|
|
|
nativeBuildInputs = [ ronn installShellFiles ];
|
|
|
|
ldflags = [ "-s" "-w" "-X ${goPackagePath}/config.Vendor=${version}" "-X ${goPackagePath}/config.GitCommit=${src.rev}" ];
|
|
|
|
subPackages = [ "." ];
|
|
|
|
postBuild = ''
|
|
make -C go/src/${goPackagePath} man
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage go/src/${goPackagePath}/man/*.{1,5}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Git extension for versioning large files";
|
|
homepage = "https://git-lfs.github.com/";
|
|
changelog = "https://github.com/git-lfs/git-lfs/raw/v${version}/CHANGELOG.md";
|
|
license = [ licenses.mit ];
|
|
maintainers = [ maintainers.twey maintainers.marsam ];
|
|
};
|
|
}
|