2024-06-26 23:04:03 +00:00
|
|
|
{ stdenv, lib, fetchzip, fetchpatch, autoconf, automake, docbook_xml_dtd_42
|
2022-05-09 14:45:06 +00:00
|
|
|
, docbook_xml_dtd_43, docbook_xsl, gtk-doc, libtool, pkg-config
|
2021-08-27 06:48:50 +00:00
|
|
|
, libxslt, xz, zstd, elf-header
|
2022-05-09 14:45:06 +00:00
|
|
|
, withDevdoc ? stdenv.hostPlatform == stdenv.buildPlatform
|
2021-01-03 21:40:14 +00:00
|
|
|
, withStatic ? stdenv.hostPlatform.isStatic
|
2022-07-11 22:01:59 +00:00
|
|
|
, gitUpdater
|
2021-01-03 21:40:14 +00:00
|
|
|
}:
|
2012-03-25 20:05:36 +00:00
|
|
|
|
2016-08-14 09:53:52 +00:00
|
|
|
let
|
2021-12-07 04:20:59 +00:00
|
|
|
systems = [ "/run/booted-system/kernel-modules" "/run/current-system/kernel-modules" "" ];
|
2016-08-15 23:42:03 +00:00
|
|
|
modulesDirs = lib.concatMapStringsSep ":" (x: "${x}/lib/modules") systems;
|
2016-08-14 09:53:52 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-03-11 17:31:24 +00:00
|
|
|
pname = "kmod";
|
2023-10-13 10:00:26 +00:00
|
|
|
version = "31";
|
2012-03-25 20:05:36 +00:00
|
|
|
|
2022-05-09 14:45:06 +00:00
|
|
|
# autogen.sh is missing from the release tarball,
|
|
|
|
# and we need to run it to regenerate gtk_doc.make,
|
|
|
|
# because the version in the release tarball is broken.
|
|
|
|
# Possibly this will be fixed in kmod 30?
|
|
|
|
# https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/commit/.gitignore?id=61a93a043aa52ad62a11ba940d4ba93cb3254e78
|
|
|
|
src = fetchzip {
|
|
|
|
url = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/snapshot/kmod-${version}.tar.gz";
|
2023-10-13 10:00:26 +00:00
|
|
|
hash = "sha256-FNR015/AoYBbi7Eb1M2TXH3yxUuddKICCu+ot10CdeQ=";
|
2012-03-25 20:05:36 +00:00
|
|
|
};
|
|
|
|
|
2022-05-09 14:45:06 +00:00
|
|
|
outputs = [ "out" "dev" "lib" ] ++ lib.optional withDevdoc "devdoc";
|
2022-03-05 12:20:21 +00:00
|
|
|
|
2023-02-25 20:54:20 +00:00
|
|
|
strictDeps = true;
|
2022-05-09 14:45:06 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoconf automake docbook_xsl libtool libxslt pkg-config
|
|
|
|
|
|
|
|
docbook_xml_dtd_42 # for the man pages
|
|
|
|
] ++ lib.optionals withDevdoc [ docbook_xml_dtd_43 gtk-doc ];
|
2023-02-25 20:54:20 +00:00
|
|
|
buildInputs = [ xz zstd ]
|
|
|
|
# gtk-doc is looked for with pkg-config
|
|
|
|
++ lib.optionals withDevdoc [ gtk-doc ];
|
2012-03-25 20:05:36 +00:00
|
|
|
|
2022-05-09 14:45:06 +00:00
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2016-08-14 09:53:52 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-xz"
|
2021-08-27 06:48:50 +00:00
|
|
|
"--with-zstd"
|
2016-08-14 09:53:52 +00:00
|
|
|
"--with-modulesdirs=${modulesDirs}"
|
2022-05-09 14:45:06 +00:00
|
|
|
(lib.enableFeature withDevdoc "gtk-doc")
|
2019-11-08 18:14:31 +00:00
|
|
|
] ++ lib.optional withStatic "--enable-static";
|
2012-03-25 20:05:36 +00:00
|
|
|
|
2024-06-26 23:04:03 +00:00
|
|
|
patches = [
|
|
|
|
./module-dir.patch
|
|
|
|
(fetchpatch {
|
|
|
|
name = "musl.patch";
|
|
|
|
url = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/patch/?id=11eb9bc67c319900ab00523997323a97d2d08ad2";
|
|
|
|
hash = "sha256-CYG615elMWces6QGQRg2H/NL7W4XsG9Zvz5H+xsdFFo=";
|
|
|
|
})
|
|
|
|
] ++ lib.optional withStatic ./enable-static.patch;
|
2012-04-04 19:24:07 +00:00
|
|
|
|
2012-04-04 19:28:33 +00:00
|
|
|
postInstall = ''
|
2016-08-14 09:53:52 +00:00
|
|
|
for prog in rmmod insmod lsmod modinfo modprobe depmod; do
|
|
|
|
ln -sv $out/bin/kmod $out/bin/$prog
|
2012-04-04 19:28:33 +00:00
|
|
|
done
|
2016-08-14 09:53:52 +00:00
|
|
|
|
|
|
|
# Backwards compatibility
|
|
|
|
ln -s bin $out/sbin
|
2012-04-04 19:28:33 +00:00
|
|
|
'';
|
|
|
|
|
2022-07-11 22:01:59 +00:00
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
# No nicer place to find latest release.
|
|
|
|
url = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git";
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2012-03-25 20:05:36 +00:00
|
|
|
description = "Tools for loading and managing Linux kernel modules";
|
2020-06-09 15:30:33 +00:00
|
|
|
longDescription = ''
|
|
|
|
kmod is a set of tools to handle common tasks with Linux kernel modules
|
|
|
|
like insert, remove, list, check properties, resolve dependencies and
|
|
|
|
aliases. These tools are designed on top of libkmod, a library that is
|
|
|
|
shipped with kmod.
|
|
|
|
'';
|
|
|
|
homepage = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/";
|
|
|
|
downloadPage = "https://www.kernel.org/pub/linux/utils/kernel/kmod/";
|
|
|
|
changelog = "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/plain/NEWS?h=v${version}";
|
2021-08-28 00:23:55 +00:00
|
|
|
license = with licenses; [ lgpl21Plus gpl2Plus ]; # GPLv2+ for tools
|
2022-07-24 16:22:49 +00:00
|
|
|
platforms = platforms.linux;
|
2021-12-08 00:56:40 +00:00
|
|
|
maintainers = with maintainers; [ artturin ];
|
2012-03-25 20:05:36 +00:00
|
|
|
};
|
|
|
|
}
|