summary refs log tree commit diff
path: root/pkgs/tools/system/which/default.nix
blob: 915354ea21de1093a4256bc9c87832f6d3bf6327 (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://nix.cs.uu.nl/dist/tarballs/which-2.16.tar.gz;
    md5 = "830b83af48347a9a3520f561e47cbc9b";
  };
}