summary refs log tree commit diff
path: root/pkgs/tools/system/which/default.nix
blob: be2892e52e8d04c83caaf3263e662fcfafd1e4ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "which-2.21";

  src = fetchurl {
    url = "mirror://gnu/which/${name}.tar.gz";
    sha256 = "1bgafvy3ypbhhfznwjv1lxmd6mci3x1byilnnkc7gcr486wlb8pl";
  };

  meta = with stdenv.lib; {
    homepage = https://www.gnu.org/software/which/;
    platforms = platforms.all;
    license = licenses.gpl3;
  };
}