about summary refs log tree commit diff
path: root/pkgs/applications/misc/camlistore
diff options
context:
space:
mode:
authorMoritz Ulrich <moritz@tarn-vedra.de>2016-06-07 21:01:41 +0200
committerMoritz Ulrich <moritz@tarn-vedra.de>2016-06-07 21:01:41 +0200
commit57cd08ae7ecad011ee4ea3bbab8757538ba7d445 (patch)
treedae7a2ee4a538e47638e98fecb6c3bc99d3a6525 /pkgs/applications/misc/camlistore
parent71e2f281ac152ff34b03f7ae98faf335b6d17c56 (diff)
downloadnixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.tar
nixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.tar.gz
nixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.tar.bz2
nixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.tar.lz
nixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.tar.xz
nixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.tar.zst
nixlib-57cd08ae7ecad011ee4ea3bbab8757538ba7d445.zip
camlistore: 0.8 -> 0.9
Diffstat (limited to 'pkgs/applications/misc/camlistore')
-rw-r--r--pkgs/applications/misc/camlistore/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/applications/misc/camlistore/default.nix b/pkgs/applications/misc/camlistore/default.nix
index a39a46222f1b..23bd89b4f057 100644
--- a/pkgs/applications/misc/camlistore/default.nix
+++ b/pkgs/applications/misc/camlistore/default.nix
@@ -1,15 +1,17 @@
-{ stdenv, lib, go, fetchurl }:
+{ stdenv, lib, go, fetchgit, git }:
 
 stdenv.mkDerivation rec {
-  version = "0.8";
+  version = "0.9";
   name = "camlistore-${version}";
 
-  src = fetchurl {
-    url = "https://github.com/bradfitz/camlistore/archive/${version}.tar.gz";
-    sha256 = "03y5zs4i9lx93apqqqfgmbxamk06z3w1q763qp0lvb15mq45gdv1";
+  src = fetchgit {
+    url = "https://github.com/camlistore/camlistore";
+    rev = "7b78c50007780643798adf3fee4c84f3a10154c9";
+    sha256 = "1vc4ca2rn8da0z0viv3vv2p8z211zdvq83jh2x2izdckdz204n17";
+    leaveDotGit = true;
   };
 
-  buildInputs = [ go ];
+  buildInputs = [ go git ];
 
   buildPhase = ''
     go run make.go