From 22ff0a19c324681075fa1eb8415f0adf04a1f30b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 22 Oct 2011 20:41:37 +0000 Subject: [PATCH] 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 --- pkgs/applications/version-management/fossil/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/fossil/default.nix b/pkgs/applications/version-management/fossil/default.nix index 01d61165af52..29aa9843fbea 100644 --- a/pkgs/applications/version-management/fossil/default.nix +++ b/pkgs/applications/version-management/fossil/default.nix @@ -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;