2022-02-21 12:52:58 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-03-23 09:10:04 +00:00
|
|
|
|
2014-02-02 07:33:19 +00:00
|
|
|
let
|
2024-10-11 13:32:17 +00:00
|
|
|
version = "31+20240202-2ubuntu8"; # Oriole 2024-10-03
|
2017-03-23 09:10:04 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "kmod-blacklist";
|
|
|
|
inherit version;
|
2014-01-20 23:29:35 +00:00
|
|
|
|
2014-02-02 07:33:19 +00:00
|
|
|
src = fetchurl {
|
2017-03-23 09:10:04 +00:00
|
|
|
url = "https://launchpad.net/ubuntu/+archive/primary/+files/kmod_${version}.debian.tar.xz";
|
2024-10-11 13:32:17 +00:00
|
|
|
hash = "sha256-i4XdCRedZIzMBbZL305enz8OAso3X14pdzNIITqK5hE=";
|
2014-01-20 23:29:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir "$out"
|
2014-02-02 07:33:19 +00:00
|
|
|
for f in modprobe.d/*.conf; do
|
2014-01-20 23:29:35 +00:00
|
|
|
echo "''\n''\n## file: "`basename "$f"`"''\n''\n" >> "$out"/modprobe.conf
|
|
|
|
cat "$f" >> "$out"/modprobe.conf
|
2017-03-14 10:06:44 +00:00
|
|
|
# https://bugs.launchpad.net/ubuntu/+source/kmod/+bug/1475945
|
2018-06-29 20:11:55 +00:00
|
|
|
sed -i '/^blacklist i2c_i801/d' $out/modprobe.conf
|
2014-01-20 23:29:35 +00:00
|
|
|
done
|
|
|
|
|
2014-02-02 08:41:39 +00:00
|
|
|
substituteInPlace "$out"/modprobe.conf \
|
|
|
|
--replace /sbin/lsmod /run/booted-system/sw/bin/lsmod \
|
2015-04-01 21:25:56 +00:00
|
|
|
--replace /sbin/rmmod /run/booted-system/sw/bin/rmmod \
|
|
|
|
--replace /sbin/modprobe /run/booted-system/sw/bin/modprobe \
|
2022-02-21 12:52:58 +00:00
|
|
|
--replace " grep " " /run/booted-system/sw/bin/grep " \
|
|
|
|
--replace " xargs " " /run/booted-system/sw/bin/xargs "
|
2014-02-02 08:41:39 +00:00
|
|
|
'';
|
2014-01-20 23:29:35 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-11-17 16:50:41 +00:00
|
|
|
homepage = "https://launchpad.net/ubuntu/+source/kmod";
|
2014-01-20 23:29:35 +00:00
|
|
|
description = "Linux kernel module blacklists from Ubuntu";
|
2017-03-23 09:10:04 +00:00
|
|
|
platforms = platforms.linux;
|
2020-06-30 19:10:46 +00:00
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
2014-01-20 23:29:35 +00:00
|
|
|
};
|
|
|
|
}
|