mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
851ffb1187
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.
27 lines
632 B
Nix
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;
|
|
};
|
|
}
|