goPackages.git-lfs: init at 1.0.0

This commit is contained in:
Tobias Geerinckx-Rice 2015-10-02 05:20:49 +02:00
parent e38fb2ea25
commit ab94830c60
1 changed files with 20 additions and 0 deletions

View File

@ -679,6 +679,26 @@ let
subPackages = [ "./" ]; # don't try to build test fixtures
};
git-lfs = buildFromGitHub {
rev = "v1.0.0";
owner = "github";
repo = "git-lfs";
sha256 = "1zlg3rm5yxak6d88brffv1wpj0iq4qgzn6sgg8xn0pbnzxjd1284";
# Tests fail with 'lfstest-gitserver.go:46: main redeclared in this block'
excludedPackages = [ "test" ];
preBuild = ''
pushd go/src/github.com/github/git-lfs
go generate ./commands
popd
'';
postInstall = ''
rm -v $bin/bin/{man,script}
'';
};
glide = buildFromGitHub {
rev = "0.5.0";
owner = "Masterminds";