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:
parent
2dcd1544dd
commit
22ff0a19c3
|
@ -1,4 +1,4 @@
|
||||||
{stdenv, fetchurl, zlib, openssl, tcl}:
|
{stdenv, fetchurl, zlib, openssl, tcl, readline, sqlite}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.20";
|
version = "1.20";
|
||||||
|
@ -10,10 +10,10 @@ stdenv.mkDerivation {
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.fossil-scm.org/download/fossil-src-${filedate}.tar.gz";
|
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 ];
|
buildNativeInputs = [ tcl ];
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
Loading…
Reference in a new issue