summary refs log tree commit diff
path: root/pkgs/os-specific/linux
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2007-03-03 22:58:19 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2007-03-03 22:58:19 +0000
commit0fdace792d315983056c3a94874acff914bf7a46 (patch)
tree521b3959082d31354a00be1fea3a382e760de36c /pkgs/os-specific/linux
parent070bcdf5c6004eb75ee4a3efb13492aa64b8d218 (diff)
downloadnixlib-0fdace792d315983056c3a94874acff914bf7a46.tar
nixlib-0fdace792d315983056c3a94874acff914bf7a46.tar.gz
nixlib-0fdace792d315983056c3a94874acff914bf7a46.tar.bz2
nixlib-0fdace792d315983056c3a94874acff914bf7a46.tar.lz
nixlib-0fdace792d315983056c3a94874acff914bf7a46.tar.xz
nixlib-0fdace792d315983056c3a94874acff914bf7a46.tar.zst
nixlib-0fdace792d315983056c3a94874acff914bf7a46.zip
* Intel PRO/Wireless 2200BG driver firmware.
svn path=/nixpkgs/trunk/; revision=8160
Diffstat (limited to 'pkgs/os-specific/linux')
-rw-r--r--pkgs/os-specific/linux/firmware/ipw2200/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/firmware/ipw2200/default.nix b/pkgs/os-specific/linux/firmware/ipw2200/default.nix
new file mode 100644
index 000000000000..e10a8b45c311
--- /dev/null
+++ b/pkgs/os-specific/linux/firmware/ipw2200/default.nix
@@ -0,0 +1,26 @@
+{stdenv, fetchurl}:
+
+stdenv.mkDerivation {
+  name = "ipw2200-fw-3.0";
+  src = fetchurl {
+    url = http://bughost.org/firmware/ipw2200-fw-3.0.tgz;
+    sha256 = "1skmxmngrgz1402yq4vbfwmghh04mn1031jrn2cli0scdxz00zm7";
+  };
+  
+  buildPhase = "true";
+
+  # Installation copies the firmware AND the license.  The license
+  # says: "Your rights to redistribute the Software shall be
+  # contingent upon your installation of this Agreement in its
+  # entirety in the same directory as the Software."
+  installPhase = "ensureDir $out; cp * $out";
+  
+  meta = {
+    # "... you may transfer a copy of the Software ... provided such
+    # recipient agrees to be fully bound by the terms hereof."
+    description = "Firmware for the Intel 2200BG wireless card (requires acceptance of license, see http://ipw2200.sourceforge.net/firmware.php?fid=7";
+    url = http://ipw2200.sourceforge.net/firmware.php;
+    license = http://ipw2200.sourceforge.net/firmware.php?fid=7;
+    # See also http://ipw2100.sourceforge.net/firmware_faq.php
+  };
+}