3
0
Fork 0
forked from mirrors/nixpkgs

Updating the fossil tarball hash, due to an update upstream:

http://www.mail-archive.com/fossil-users@lists.fossil-scm.org/msg06730.html

I also add readline (it may provide a nicer prompt on fossil sqlite)
and sqlite (required for some tests).

The old tarballs were broken in a way that the tests requiring sqlite were not run.


svn path=/nixpkgs/trunk/; revision=29974
This commit is contained in:
Lluís Batlle i Rossell 2011-10-22 20:41:37 +00:00
parent 2dcd1544dd
commit 22ff0a19c3

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, zlib, openssl, tcl}:
{stdenv, fetchurl, zlib, openssl, tcl, readline, sqlite}:
let
version = "1.20";
@ -10,10 +10,10 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.fossil-scm.org/download/fossil-src-${filedate}.tar.gz";
sha256 = "1qislpc003ydz22ix27k01j975qw745wwjj5x82zd39412mlzycg";
sha256 = "0m75kw77iray3kbjm1xfn8hr116fn11yv1wr7adcwy314cgj0vv3";
};
buildInputs = [ zlib openssl ];
buildInputs = [ zlib openssl readline sqlite ];
buildNativeInputs = [ tcl ];
doCheck = true;