about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/firmware/ralink/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/firmware/ralink/default.nix')
-rw-r--r--pkgs/os-specific/linux/firmware/ralink/default.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/os-specific/linux/firmware/ralink/default.nix b/pkgs/os-specific/linux/firmware/ralink/default.nix
deleted file mode 100644
index abf12fd672b71..0000000000000
--- a/pkgs/os-specific/linux/firmware/ralink/default.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{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 = ''
-    mkdir -p $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";
-  };
-}