mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 19:54:05 +00:00
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib, buildGoPackage, fetchFromGitHub, ronn, installShellFiles }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "git-lfs";
|
|
version = "3.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
rev = "v${version}";
|
|
owner = "git-lfs";
|
|
repo = "git-lfs";
|
|
sha256 = "sha256-3gVUPfZs5GViEA3D7Zm5NdxhuEz9DhwPLoQqHFdGCrI=";
|
|
};
|
|
|
|
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 = [ "." ];
|
|
|
|
preBuild = ''
|
|
pushd go/src/github.com/git-lfs/git-lfs
|
|
go generate ./commands
|
|
popd
|
|
'';
|
|
|
|
postBuild = ''
|
|
make -C go/src/${goPackagePath} man
|
|
'';
|
|
|
|
postInstall = ''
|
|
installManPage go/src/${goPackagePath}/man/man*/*
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|