Merge pull request #36804 from vdemeester/update-notary-060

notary: 0.5.1 -> 0.6.0
This commit is contained in:
lewo 2018-03-14 10:19:47 +01:00 committed by GitHub
commit a12ad22c2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,22 +2,22 @@
buildGoPackage rec {
name = "notary-${version}";
version = "0.5.1";
gitcommit = "9211198";
version = "0.6.0";
gitcommit = "34f53ad";
src = fetchFromGitHub {
owner = "theupdateframework";
repo = "notary";
rev = "v${version}";
sha256 = "0z9nsb1mrl0q5j02jkyzbc6xqsm83qzacsckypsxcrijhw935rs5";
sha256 = "0lg7ab2agkk3rnladcvpdzk8cnf3m49qfm4sanh7yjvlvlv1wm4a";
};
buildInputs = [ libtool ];
goPackagePath = "github.com/docker/notary";
goPackagePath = "github.com/theupdateframework/notary";
buildPhase = ''
cd go/src/github.com/docker/notary
cd go/src/github.com/theupdateframework/notary
make GITCOMMIT=${gitcommit} GITUNTRACKEDCHANGES= client
'';