2016-08-14 11:53:52 +02:00
|
|
|
{ stdenv, lib, fetchurl, autoreconfHook, xz, zlib, pkgconfig, libxslt }:
|
2012-03-25 22:05:36 +02:00
|
|
|
|
2016-08-14 11:53:52 +02:00
|
|
|
let
|
2016-08-16 01:42:03 +02:00
|
|
|
systems = [ "/run/current-system/kernel-modules" "/run/booted-system/kernel-modules" "" ];
|
|
|
|
modulesDirs = lib.concatMapStringsSep ":" (x: "${x}/lib/modules") systems;
|
2016-08-14 11:53:52 +02:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "kmod-${version}";
|
2016-08-16 01:42:03 +02:00
|
|
|
version = "23";
|
2012-03-25 22:05:36 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-06-15 19:58:42 +02:00
|
|
|
url = "mirror://kernel/linux/utils/kernel/kmod/${name}.tar.xz";
|
2016-08-16 01:42:03 +02:00
|
|
|
sha256 = "0mc12sx06p8il1ym3hdmgxxb37apn9yv7xij26gddjdfkx8xa0yk";
|
2012-03-25 22:05:36 +02:00
|
|
|
};
|
|
|
|
|
2016-08-14 11:53:52 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];
|
|
|
|
buildInputs = [ xz /* zlib */ ];
|
2012-03-25 22:05:36 +02:00
|
|
|
|
2016-08-14 11:53:52 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-xz"
|
|
|
|
"--with-modulesdirs=${modulesDirs}"
|
|
|
|
# "--with-zlib"
|
|
|
|
];
|
2012-03-25 22:05:36 +02:00
|
|
|
|
2012-04-04 21:24:07 +02:00
|
|
|
patches = [ ./module-dir.patch ];
|
|
|
|
|
2012-04-04 21:28:33 +02:00
|
|
|
postInstall = ''
|
2016-08-14 11:53:52 +02:00
|
|
|
for prog in rmmod insmod lsmod modinfo modprobe depmod; do
|
|
|
|
ln -sv $out/bin/kmod $out/bin/$prog
|
2012-04-04 21:28:33 +02:00
|
|
|
done
|
2016-08-14 11:53:52 +02:00
|
|
|
|
|
|
|
# Backwards compatibility
|
|
|
|
ln -s bin $out/sbin
|
2012-04-04 21:28:33 +02:00
|
|
|
'';
|
|
|
|
|
2012-03-25 22:05:36 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.kernel.org/pub/linux/utils/kernel/kmod/;
|
|
|
|
description = "Tools for loading and managing Linux kernel modules";
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|