summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-01-15 14:03:18 +0100
committerRobin Gloster <mail@glob.in>2017-01-15 14:03:51 +0100
commit30621e1052e39471459c12bd74ad1bb9a9280686 (patch)
tree6fb77c762b2138ca9096aaf9a194fd04e147da2a
parent803a56af2653c2f9d1789535ecc6527dc75faedc (diff)
downloadnixlib-30621e1052e39471459c12bd74ad1bb9a9280686.tar
nixlib-30621e1052e39471459c12bd74ad1bb9a9280686.tar.gz
nixlib-30621e1052e39471459c12bd74ad1bb9a9280686.tar.bz2
nixlib-30621e1052e39471459c12bd74ad1bb9a9280686.tar.lz
nixlib-30621e1052e39471459c12bd74ad1bb9a9280686.tar.xz
nixlib-30621e1052e39471459c12bd74ad1bb9a9280686.tar.zst
nixlib-30621e1052e39471459c12bd74ad1bb9a9280686.zip
go-dependency-manager: fix fetchFromGitHub call
-rw-r--r--pkgs/development/tools/gdm/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/gdm/default.nix b/pkgs/development/tools/gdm/default.nix
index ee805ff04b54..35328fdf66cf 100644
--- a/pkgs/development/tools/gdm/default.nix
+++ b/pkgs/development/tools/gdm/default.nix
@@ -7,9 +7,10 @@ buildGoPackage rec {
   goPackagePath = "github.com/sparrc/gdm";
 
   src = fetchFromGitHub {
-    url = "https://github.com/sparrc/gdm";
-    sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld";
+    owner = "sparrc";
+    repo = "gdm";
     rev = version;
+    sha256 = "0kpqmbg144qcvd8k88j9yx9lrld85ray2viw161xajafk16plvld";
   };
 
   goDeps = ./deps.nix;