mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
e5567bae2d
Bootstrap tools has since been bumped
17 lines
355 B
Nix
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;
|
|
};
|
|
}
|