2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2009-02-03 08:32:56 -08:00
|
|
|
|
2015-03-25 22:42:36 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "which-2.21";
|
2016-02-22 10:32:53 -08:00
|
|
|
|
2003-12-23 12:51:58 -08:00
|
|
|
src = fetchurl {
|
2015-03-25 22:42:36 -07:00
|
|
|
url = "mirror://gnu/which/${name}.tar.gz";
|
|
|
|
sha256 = "1bgafvy3ypbhhfznwjv1lxmd6mci3x1byilnnkc7gcr486wlb8pl";
|
2003-12-23 12:51:58 -08:00
|
|
|
};
|
2008-01-20 10:23:55 -08:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.gnu.org/software/which/";
|
2019-10-05 21:59:27 -07:00
|
|
|
description = "Shows the full path of (shell) commands";
|
2015-03-25 22:42:36 -07:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.gpl3;
|
2009-02-03 08:32:56 -08:00
|
|
|
};
|
|
|
|
}
|