nixpkgs/pkgs/os-specific/linux/wireless-tools/default.nix
Philip Taron 851ffb1187
Update the download and homepage links for wirelesstools
While this package is no longer maintained, it's still referenced online
and used by some configurations. Let's make sure that we're able to
access the code and website.
2023-10-13 14:25:17 -07:00

27 lines
632 B
Nix

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "wireless-tools";
version = "30.pre9";
src = fetchurl {
url = "https://hewlettpackard.github.io/wireless-tools/wireless_tools.${version}.tar.gz";
sha256 = "0qscyd44jmhs4k32ggp107hlym1pcyjzihiai48xs7xzib4wbndb";
};
makeFlags = [
"PREFIX=${placeholder "out"}"
"CC:=$(CC)"
"AR:=$(AR)"
"RANLIB:=$(RANLIB)"
"LDCONFIG=:"
];
meta = {
description = "Wireless tools for Linux";
homepage = "https://hewlettpackard.github.io/wireless-tools/Tools.html";
platforms = lib.platforms.linux;
license = lib.licenses.gpl2;
};
}