go-dependency-manager: fix fetchFromGitHub call

This commit is contained in:
Robin Gloster 2017-01-15 14:03:18 +01:00
parent 803a56af26
commit 30621e1052
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882
1 changed files with 3 additions and 2 deletions

View File

@ -7,9 +7,10 @@ buildGoPackage rec {
goPackagePath = "github.com/sparrc/gdm"; goPackagePath = "github.com/sparrc/gdm";
src = fetchFromGitHub { src = fetchFromGitHub {
url = "https://github.com/sparrc/gdm"; owner = "sparrc";
sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld"; repo = "gdm";
rev = version; rev = version;
sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld";
}; };
goDeps = ./deps.nix; goDeps = ./deps.nix;