nixpkgs-suyu/pkgs/tools/system/which/default.nix

19 lines
447 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-03-26 06:42:36 +01:00
stdenv.mkDerivation rec {
2021-07-27 16:46:40 +02:00
pname = "which";
version = "2.21";
src = fetchurl {
2021-07-27 16:46:40 +02:00
url = "mirror://gnu/which/which-${version}.tar.gz";
2015-03-26 06:42:36 +01:00
sha256 = "1bgafvy3ypbhhfznwjv1lxmd6mci3x1byilnnkc7gcr486wlb8pl";
};
meta = with lib; {
homepage = "https://www.gnu.org/software/which/";
description = "Shows the full path of (shell) commands";
2015-03-26 06:42:36 +01:00
platforms = platforms.all;
license = licenses.gpl3;
};
}