mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, lib, fetchurl, autoreconfHook, xz, zlib, pkgconfig, libxslt }:
|
|
|
|
let
|
|
systems = [ "/run/current-system/kernel-modules" "/run/booted-system/kernel-modules" "" ];
|
|
modulesDirs = lib.concatMapStringsSep ":" (x: "${x}/lib/modules") systems;
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "kmod-${version}";
|
|
version = "23";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/utils/kernel/kmod/${name}.tar.xz";
|
|
sha256 = "0mc12sx06p8il1ym3hdmgxxb37apn9yv7xij26gddjdfkx8xa0yk";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];
|
|
buildInputs = [ xz /* zlib */ ];
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--with-xz"
|
|
"--with-modulesdirs=${modulesDirs}"
|
|
# "--with-zlib"
|
|
];
|
|
|
|
patches = [ ./module-dir.patch ];
|
|
|
|
postInstall = ''
|
|
for prog in rmmod insmod lsmod modinfo modprobe depmod; do
|
|
ln -sv $out/bin/kmod $out/bin/$prog
|
|
done
|
|
|
|
# Backwards compatibility
|
|
ln -s bin $out/sbin
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|