Adding a single expression to provide all ralink firmware, if there are no objections this could replace all the rt* firmware expressions

svn path=/nixpkgs/trunk/; revision=31365
This commit is contained in:
Cillian de Roiste 2012-01-06 18:42:39 +00:00
parent d7edd1e22c
commit 9686b7def6
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,33 @@
{stdenv, fetchsvn }:
# Upstream is http://git.kernel.org/?p=linux/kernel/git/firmware/linux-firmware.git
stdenv.mkDerivation {
name = "ralink-fw-r17279";
src = fetchsvn {
url = svn://svn.debian.org/kernel/dists/trunk/firmware-nonfree/ralink;
rev = 17279;
sha256 = "06nc6w3xcrxzcai7gaf27k0v8k2xbq3imzpgc02rbxv5q5flxh65";
};
unpackPhase = "true";
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 $src/*.bin $out
cp $src/LICENSE $out/ralink.LICENSE
'';
meta = {
description = "Firmware for the Ralink wireless cards";
homepage = http://www.ralinktech.com/;
license = "non-free";
};
}

View File

@ -6027,6 +6027,8 @@ let
rfkill = callPackage ../os-specific/linux/rfkill { };
ralink_fw = callPackage ../os-specific/linux/firmware/ralink { };
rt2860fw = callPackage ../os-specific/linux/firmware/rt2860 { };
rt2870fw = callPackage ../os-specific/linux/firmware/rt2870 { };