mdio-netlink: init at 1.3.1

This commit is contained in:
Jared Baur
2025-10-29 21:18:44 -07:00
parent 21124ba61b
commit 9bdf1311ee
2 changed files with 31 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
lib,
stdenv,
kernel,
mdio-tools,
}:
stdenv.mkDerivation {
pname = "mdio-netlink";
version = "${mdio-tools.version}-${kernel.version}";
inherit (mdio-tools) src;
sourceRoot = "source/kernel";
nativeBuildInputs = kernel.moduleBuildDependencies;
makeFlags = kernel.commonMakeFlags ++ [
"KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
"INSTALL_MOD_PATH=${placeholder "out"}"
];
meta = {
description = "Netlink support for MDIO devices";
homepage = "https://github.com/wkz/mdio-tools";
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.jmbaur ];
platforms = lib.platforms.linux;
};
}

View File

@@ -558,6 +558,8 @@ in
mba6x_bl = callPackage ../os-specific/linux/mba6x_bl { };
mdio-netlink = callPackage ../os-specific/linux/mdio-netlink { };
mwprocapture = callPackage ../os-specific/linux/mwprocapture { };
mxu11x0 = callPackage ../os-specific/linux/mxu11x0 { };