mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
2ed5c2bd6b
Also fix meta.platform -> meta.platforms in a few places.
16 lines
319 B
Nix
16 lines
319 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "which-2.20";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnu/which/which-2.20.tar.gz;
|
|
sha256 = "1y2p50zadb36izzh2zw4dm5hvdiydqf3qa88l8kav20dcmfbc5yl";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://ftp.gnu.org/gnu/which/;
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|