mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
FIX: deis and gawp shas
This commit is contained in:
parent
30acfc3b45
commit
9683f5751f
2 changed files with 6 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, buildGoPackage, fetchgit }:
|
||||
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "deis-${version}";
|
||||
|
@ -14,10 +14,11 @@ buildGoPackage rec {
|
|||
fi
|
||||
'';
|
||||
|
||||
src = fetchgit {
|
||||
src = fetchFromGitHub {
|
||||
inherit rev;
|
||||
url = "https://github.com/deis/deis";
|
||||
sha256 = "1fblg3gf7dh5hhm4ajq7yl7iy6gw8p5xlh4z8kvfy542m1fzr0dc";
|
||||
owner = "deis";
|
||||
repo = "deis";
|
||||
sha256 = "1qv9lxqx7m18029lj8cw3k7jngvxs4iciwrypdy0gd2nnghc68sw";
|
||||
};
|
||||
|
||||
goDeps = ./deps.json;
|
||||
|
|
|
@ -12,7 +12,7 @@ buildGoPackage rec {
|
|||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/martingallagher/gawp";
|
||||
sha256 = "0r4bp4w3s9rkmg3cz9jb7d6ngh7vfj31p9kbim6mhilxvmgjk4ly";
|
||||
sha256 = "0bbmbb1xxdgvqvg1ssn9d4j213li7bbbx3y42iz4fs10xv7x4r0c";
|
||||
};
|
||||
|
||||
goDeps = ./deps.json;
|
||||
|
|
Loading…
Reference in a new issue