mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
which:
* update to 2.19 * add readline dependency * use mirror:// for download location svn path=/nixpkgs/trunk/; revision=10231
This commit is contained in:
parent
a5e3c976f4
commit
aa275908c0
@ -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];
|
||||
}
|
||||
|
||||
|
||||
|
@ -819,7 +819,7 @@ rec {
|
||||
};
|
||||
|
||||
which = import ../tools/system/which {
|
||||
inherit fetchurl stdenv;
|
||||
inherit fetchurl stdenv readline;
|
||||
};
|
||||
|
||||
wv = import ../tools/misc/wv {
|
||||
|
Loading…
Reference in New Issue
Block a user