summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-01-21 00:29:35 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-01-28 12:52:36 +0100
commit5acaa980a510f77fce358bdbe93ab5fa388118fd (patch)
treec407cf2ccba52f91f085a9c70256c320b0d60d78 /pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
parent849b383f4d26eed9145fe2b584d1cf3d6f7dd63a (diff)
downloadnixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.tar
nixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.tar.gz
nixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.tar.bz2
nixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.tar.lz
nixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.tar.xz
nixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.tar.zst
nixpkgs-5acaa980a510f77fce358bdbe93ab5fa388118fd.zip
pull module blacklist from Ubuntu and use it by default
People often have serious problems due to bogus modules like *fb.
Diffstat (limited to 'pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix')
-rw-r--r--pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix b/pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
new file mode 100644
index 00000000000..9da50766f92
--- /dev/null
+++ b/pkgs/os-specific/linux/kmod-blacklist-ubuntu/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchbzr }:
+
+stdenv.mkDerivation rec {
+  name = "blacklist-ubuntu-${builtins.toString src.revision}"; # Saucy
+
+  src = fetchbzr {
+    url = meta.homepage;
+    sha256 = "0ci4b5dxzirc27zvgpr3s0pa78gjmfjwprmvyplxhwxb765la9v9";
+    revision = 13;
+  };
+
+  unpackPhase = "true";
+
+  installPhase = ''
+    mkdir "$out"
+    for f in "$src"/debian/modprobe.d/*.conf; do
+      echo "''\n''\n## file: "`basename "$f"`"''\n''\n" >> "$out"/modprobe.conf
+      cat "$f" >> "$out"/modprobe.conf
+    done
+  '';
+
+  #TODO: iwlwifi.conf has some strange references
+
+  meta = {
+    homepage = https://code.launchpad.net/~ubuntu-branches/ubuntu/saucy/kmod/saucy;
+    description = "Linux kernel module blacklists from Ubuntu";
+  };
+}