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