mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig
|
|
, libxslt, xz, elf-header
|
|
, withStatic ? false }:
|
|
|
|
let
|
|
systems = [ "/run/current-system/kernel-modules" "/run/booted-system/kernel-modules" "" ];
|
|
modulesDirs = lib.concatMapStringsSep ":" (x: "${x}/lib/modules") systems;
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "kmod";
|
|
version = "26";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/utils/kernel/${pname}/${pname}-${version}.tar.xz";
|
|
sha256 = "17dvrls70nr3b3x1wm8pwbqy4r8a5c20m0dhys8mjhsnpg425fsp";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig libxslt ];
|
|
buildInputs = [ xz ] ++ lib.optional stdenv.isDarwin elf-header;
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc"
|
|
"--with-xz"
|
|
"--with-modulesdirs=${modulesDirs}"
|
|
] ++ lib.optional withStatic "--enable-static";
|
|
|
|
patches = [ ./module-dir.patch ]
|
|
++ lib.optional stdenv.isDarwin ./darwin.patch
|
|
++ lib.optional withStatic ./enable-static.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 = with stdenv.lib; {
|
|
homepage = https://www.kernel.org/pub/linux/utils/kernel/kmod/;
|
|
description = "Tools for loading and managing Linux kernel modules";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|