nixpkgs/pkgs/tools/system/which/default.nix
John Ericson e5567bae2d treewide: Do not limit hardenging because gcc 4.9 in bootstrap
Bootstrap tools has since been bumped
2017-09-14 10:27:13 -04:00

17 lines
355 B
Nix

{ 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 = http://ftp.gnu.org/gnu/which/;
platforms = platforms.all;
license = licenses.gpl3;
};
}