mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
64b7de15d3
Updated for breaking changes in Linux 6.10.
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ lib, fetchFromGitHub, kernel, unstableGitUpdater }:
|
|
kernel.stdenv.mkDerivation {
|
|
pname = "rust-out-of-tree-module";
|
|
version = "0-unstable-2024-05-06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Rust-for-linux";
|
|
repo = "rust-out-of-tree-module";
|
|
|
|
rev = "9872947486bb8f60b0d11db15d546a3d06156ec5";
|
|
hash = "sha256-TzCySY7uQac98dU+Nu5dC4Usm7oG0iIdZZmZgAOpni4=";
|
|
};
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
makeFlags = kernel.makeFlags ++ [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" ];
|
|
|
|
installFlags = [ "INSTALL_MOD_PATH=${placeholder "out"}" ];
|
|
installTargets = [ "modules_install" ];
|
|
|
|
passthru.updateScript = unstableGitUpdater { };
|
|
|
|
meta = {
|
|
broken = !kernel.withRust;
|
|
description = "Basic template for an out-of-tree Linux kernel module written in Rust";
|
|
homepage = "https://github.com/Rust-for-Linux/rust-out-of-tree-module";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = [ lib.maintainers.blitz ];
|
|
platforms = [ "x86_64-linux" ]
|
|
++ lib.optional (kernel.kernelAtLeast "6.9") "aarch64-linux";
|
|
};
|
|
|
|
}
|