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

18 lines
422 B
Nix
Raw Normal View History

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