nixpkgs/pkgs/os-specific/linux/firmware/ipw2100/default.nix
Eelco Dolstra c556a6ea46 * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointless
function, so obsolete it.

svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
2012-01-18 20:16:00 +00:00

26 lines
976 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "ipw2100-fw-1.3";
src = fetchurl {
url = http://bughost.org/firmware/ipw2100-fw-1.3.tgz;
sha256 = "18m7wgd062qwfdr6y0kjrvf1715wjcjn4yml2sk29ls8br2pq471";
};
unpackPhase = "tar xvzf $src";
# 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 = "mkdir -p $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 2100BG wireless card (requires acceptance of license, see http://ipw2100.sourceforge.net/firmware.php?fid=2)";
homepage = http://ipw2100.sourceforge.net/firmware.php;
license = http://ipw2100.sourceforge.net/firmware.php?fid=2;
};
}