907bb1aac6
* libdbi / libdbi-drivers: updated to 0.8.3, and make it compile with SQLite. * qemu-image: fix the URL. * gdmap: make it build again (requires an older GTK+). * rlwrap: updated to 0.37. * smbfs-fuse -> fusesmb to match the upstream name. * x11vnc: updated to 0.9.10. * clearlyU: fix the URL. * Various packages: follow the coding conventions. svn path=/nixpkgs/trunk/; revision=22814
29 lines
784 B
Nix
29 lines
784 B
Nix
{ stdenv, fetchurl, builderDefs, kernel }:
|
|
let localDefs = builderDefs.passthru.function {
|
|
src = /* put a fetchurl here */
|
|
fetchurl {
|
|
url = http://downloads.sourceforge.net/madwifi/madwifi-0.9.4.tar.gz;
|
|
sha256 = "06jd5b8rfw7rmiva6jgmrb7n26g5plcg9marbnnmg68gbcqbr3xh";
|
|
};
|
|
|
|
buildInputs = [];
|
|
configureFlags = [];
|
|
makeFlags = [''KERNELPATH=${kernel}/lib/modules/*/build'' ''DESTDIR=$out''];
|
|
};
|
|
in with localDefs;
|
|
let
|
|
postInstall = fullDepEntry (''
|
|
ln -s $out/usr/local/bin $out/bin
|
|
'') [minInit doMakeInstall];
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "atheros-0.9.4";
|
|
builder = writeScript (name + "-builder")
|
|
(textClosure localDefs [doMakeInstall
|
|
postInstall doForceShare doPropagate]);
|
|
meta = {
|
|
description = "Atheros WiFi driver";
|
|
inherit src;
|
|
};
|
|
}
|