nixpkgs/pkgs/tools/system/which/default.nix
Eelco Visser b4ce40af2b added packages: which, libtool
aggregation in all-packages-generic: autotools
building strategoxt from svn

not complete yet since autconf cannot find libtool


svn path=/nixpkgs/trunk/; revision=596
2003-12-23 20:51:58 +00:00

14 lines
260 B
Nix

{stdenv, fetchurl}: derivation {
name = "which-2.16";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://ftp.gnu.org/gnu/which/which-2.16.tar.gz;
md5 = "830b83af48347a9a3520f561e47cbc9b";
};
stdenv = stdenv;
}