Author: viric Date: Sat Oct 22 20:41:37 2011 New Revision: 29974 URL: https://nixos.org/websvn/nix/?rev=29974&sc=1
Log: Updating the fossil tarball hash, due to an update upstream: http://www.mail-archive.com/[email protected]/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. Modified: nixpkgs/trunk/pkgs/applications/version-management/fossil/default.nix Modified: nixpkgs/trunk/pkgs/applications/version-management/fossil/default.nix ============================================================================== --- nixpkgs/trunk/pkgs/applications/version-management/fossil/default.nix Sat Oct 22 16:21:07 2011 (r29973) +++ nixpkgs/trunk/pkgs/applications/version-management/fossil/default.nix Sat Oct 22 20:41:37 2011 (r29974) @@ -1,4 +1,4 @@ -{stdenv, fetchurl, zlib, openssl, tcl}: +{stdenv, fetchurl, zlib, openssl, tcl, readline, sqlite}: let version = "1.20"; @@ -10,10 +10,10 @@ 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; _______________________________________________ nix-commits mailing list [email protected] http://lists.science.uu.nl/mailman/listinfo/nix-commits
