da57804fff
svn path=/nixpkgs/branches/stdenv-updates/; revision=10267
11 lines
234 B
Nix
11 lines
234 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "which-2.19";
|
|
src = fetchurl {
|
|
url = mirror://gnu/which/which-2.19.tar.gz;
|
|
sha256 = "0lnd8mfpc0r1r2ch54vl3vc6r0fnzfl33sqdda2aq62iyrsbhybx";
|
|
};
|
|
|
|
buildInputs = [readline];
|
|
}
|