* update to 2.19
* add readline dependency
* use mirror:// for download location

svn path=/nixpkgs/trunk/; revision=10231
This commit is contained in:
Armijn Hemel 2008-01-20 18:23:55 +00:00
parent a5e3c976f4
commit aa275908c0
2 changed files with 7 additions and 5 deletions

View File

@ -1,9 +1,11 @@
{stdenv, fetchurl}: stdenv.mkDerivation {
name = "which-2.17";
{stdenv, fetchurl, readline}: stdenv.mkDerivation {
name = "which-2.19";
src = fetchurl {
url = http://ftp.gnu.org/gnu/which/which-2.17.tar.gz;
sha256 = "1nnnbn83da8481blmcyv96gm15ccsilr93fmgmwdlzj8a72fjvqp";
url = mirror://gnu/pub/gnu/which/which-2.19.tar.gz;
sha256 = "0lnd8mfpc0r1r2ch54vl3vc6r0fnzfl33sqdda2aq62iyrsbhybx";
};
buildInputs = [readline];
}

View File

@ -819,7 +819,7 @@ rec {
};
which = import ../tools/system/which {
inherit fetchurl stdenv;
inherit fetchurl stdenv readline;
};
wv = import ../tools/misc/wv {