94fe7734fa
* GCC 3.4.5. * Updated several other stdenv packages. * Modified the builders of several packages to use the generic builder. svn path=/nixpkgs/trunk/; revision=4336
11 lines
203 B
Nix
11 lines
203 B
Nix
{stdenv, fetchurl}: stdenv.mkDerivation {
|
|
name = "which-2.16";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/which-2.16.tar.gz;
|
|
md5 = "830b83af48347a9a3520f561e47cbc9b";
|
|
};
|
|
}
|
|
|
|
|
|
|