nixpkgs/pkgs/os-specific/linux/atheros/r3122.nix
Michael Raskin c263a71810 Fixed Atheros to export utilities in PATH
svn path=/nixpkgs/trunk/; revision=10902
2008-03-02 11:04:51 +00:00

30 lines
785 B
Nix

args : with args;
let localDefs = builderDefs {
src = /* put a fetchurl here */
fetchurl {
url = http://snapshots.madwifi.org/madwifi-ng/madwifi-ng-r3122-20080109.tar.gz;
sha256 = "188258c6q96n8lb57c0cqsvxp47psninirdax13w4yd07v1rymwd";
};
buildInputs = [];
configureFlags = [];
makeFlags = [''KERNELPATH=${kernel}/lib/modules/*/build'' ''DESTDIR=$out''];
} null; /* null is a terminator for sumArgs */
in with localDefs;
let
postInstall = FullDepEntry (''
ln -s $out/usr/local/bin $out/bin
'') [minInit doMakeInstall];
in
stdenv.mkDerivation rec {
name = "atheros-"+version;
builder = writeScript (name + "-builder")
(textClosure localDefs [doMakeInstall postInstall
doForceShare doPropagate]);
meta = {
description = "
Atheros WiFi driver.
";
};
}