summary refs log tree commit diff
path: root/pkgs/tools/system/which/default.nix
blob: 0c9f6b6a7764e05110e0a5db36c5bc785a930e15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "which-2.16";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://ftp.gnu.org/gnu/which/which-2.16.tar.gz;
    md5 = "830b83af48347a9a3520f561e47cbc9b";
  };
}