From f0692e43557455c770e3f82a3e31ae4c62dbbeff Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 16 Sep 2014 00:22:55 -0400 Subject: [PATCH] update camlistore to 0.8 --- pkgs/applications/misc/camlistore/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/camlistore/default.nix b/pkgs/applications/misc/camlistore/default.nix index 9adac335c0c7..a39a46222f1b 100644 --- a/pkgs/applications/misc/camlistore/default.nix +++ b/pkgs/applications/misc/camlistore/default.nix @@ -1,12 +1,12 @@ { stdenv, lib, go, fetchurl }: stdenv.mkDerivation rec { - version = "0.7"; + version = "0.8"; name = "camlistore-${version}"; src = fetchurl { - url = "https://github.com/bradfitz/camlistore/archive/0.7.tar.gz"; - sha256 = "0lc35x2b9llrnma0m5czivly0c3l4lh3ldw9hwn83lkh8n0bzn11"; + url = "https://github.com/bradfitz/camlistore/archive/${version}.tar.gz"; + sha256 = "03y5zs4i9lx93apqqqfgmbxamk06z3w1q763qp0lvb15mq45gdv1"; }; buildInputs = [ go ];