summary refs log tree commit diff
path: root/pkgs/tools/system/which/default.nix
blob: 6e938e4500915bcae000e9e4c433450699f1a22f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{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";
  };
}