camlistore: 0.8 -> 0.9

This commit is contained in:
Moritz Ulrich 2016-06-07 21:01:41 +02:00
parent 71e2f281ac
commit 57cd08ae7e
1 changed files with 8 additions and 6 deletions

View File

@ -1,15 +1,17 @@
{ stdenv, lib, go, fetchurl }: { stdenv, lib, go, fetchgit, git }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.8"; version = "0.9";
name = "camlistore-${version}"; name = "camlistore-${version}";
src = fetchurl { src = fetchgit {
url = "https://github.com/bradfitz/camlistore/archive/${version}.tar.gz"; url = "https://github.com/camlistore/camlistore";
sha256 = "03y5zs4i9lx93apqqqfgmbxamk06z3w1q763qp0lvb15mq45gdv1"; rev = "7b78c50007780643798adf3fee4c84f3a10154c9";
sha256 = "1vc4ca2rn8da0z0viv3vv2p8z211zdvq83jh2x2izdckdz204n17";
leaveDotGit = true;
}; };
buildInputs = [ go ]; buildInputs = [ go git ];
buildPhase = '' buildPhase = ''
go run make.go go run make.go