summary refs log tree commit diff
path: root/pkgs/os-specific/linux/atheros/r3574.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/atheros/r3574.nix')
-rw-r--r--pkgs/os-specific/linux/atheros/r3574.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/os-specific/linux/atheros/r3574.nix b/pkgs/os-specific/linux/atheros/r3574.nix
deleted file mode 100644
index 7b97a235ae7b..000000000000
--- a/pkgs/os-specific/linux/atheros/r3574.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-args : with args;
-	let localDefs = builderDefs {
-		src = /* put a fetchurl here */
-		  fetchurl {
-		    url = http://snapshots.madwifi.org/madwifi-trunk/madwifi-trunk-r3574-20080426.tar.gz;
-		    sha256 = "1awr8jxrh6nvrsnyaydafkz7yarax3h4xphjcx6gmwsfbyb2mj7q";
-		  };
-
-		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";
-		inherit src;
-	};
-}