mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 08:34:50 +00:00
38 lines
1,018 B
Nix
38 lines
1,018 B
Nix
{ lib, buildGoPackage, fetchFromGitHub, ronn, installShellFiles }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "git-lfs";
|
|
version = "3.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "git-lfs";
|
|
repo = "git-lfs";
|
|
sha256 = "0k2pzbhd95xixh5aqdwf5pafilg85wl46d04xbb4lx6k3gkfv0f3";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|