about summary refs log tree commit diff
path: root/pkgs/applications/misc/exercism/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/exercism/default.nix')
-rw-r--r--pkgs/applications/misc/exercism/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/misc/exercism/default.nix b/pkgs/applications/misc/exercism/default.nix
index 74aab5e7e130..4c5e9e5230a6 100644
--- a/pkgs/applications/misc/exercism/default.nix
+++ b/pkgs/applications/misc/exercism/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name    = "exercism-${version}";
-  version = "2.4.1";
+  version = "3.0.6";
 
   goPackagePath = "github.com/exercism/cli";
 
@@ -10,14 +10,15 @@ buildGoPackage rec {
     owner  = "exercism";
     repo   = "cli";
     rev    = "v${version}";
-    sha256 = "1nab4459zi2gkh18k9vsm54bz39c2sb60v2xy0i72j1vd99axjjj";
+    sha256 = "0xr5bqzm0md1vllnr384k92k7w1nxzw9lhqgm23zkxx5a4vqzy56";
   };
 
+  goDeps = ./deps.nix;
+
   meta = with stdenv.lib; {
+   inherit (src.meta) homepage;
    description = "A Go based command line tool for exercism.io";
-   homepage    = http://exercism.io/cli;
    license     = licenses.mit;
    maintainers = [ maintainers.rbasso ];
-   platforms   = platforms.unix;
   };
 }