mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 17:14:00 +00:00
![Maximilian Bosch](/assets/img/avatar_default.png)
Closes #376820 The issue with providing `moduleMakeFlags` via `passthru` of the kernel package is that when this package gets overriden[1], the `moduleMakeFlags` list still references the kernel without the overrides. This broke e.g. kernel modules of linux-rpi4 which can be reproduced with nix-build --argstr system aarch64-linux -A linuxKernel.packages.linux_rpi4.zfs_2_3 This used to break with Error: modDirVersion 6.6.51 specified in the Nix expression is wrong, it should be: 6.6.51-v8 since KBUILD_OUTPUT referenced the kernel without the changes from `overrideDerivation` that also changes the `modDirVersion`. The new approach is to add the build flags right into `linuxKernel.packages.linux_X_Y`: that way we don't need any hacks to update `moduleMakeFlags` when the derivation with the passthru gets overridden. By using the fixpoint of the package-set, the `kernelModuleMakeFlags` list is correctly updated. E.g. given with import ./. {}; linuxKernel.packages.linux_6_6.extend (self: super: { kernel = super.kernel.overrideAttrs (_: { name = "linux-snens"; }); }) the `makeFlags` is correctly updated: $ nix-instantiate snenskek.nix -A zfs_2_3.makeFlags --eval --strict [ "ARCH=x86_64" "CROSS_COMPILE=" "KBUILD_OUTPUT=/nix/store/gsp68549k1aqbwxwczpgw67w5jjn4shw-linux-snens-dev/lib/modules/6.6.74/build" ] [1] E.g. `linux-rpi4`.
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
kernel,
|
|
kernelModuleMakeFlags,
|
|
stdenv,
|
|
fetchFromGitea,
|
|
libgcrypt,
|
|
lvm2,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
name = "shufflecake";
|
|
version = "0.5.1";
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "shufflecake";
|
|
repo = "shufflecake-c";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-ULRx+WEz7uQ1C0JDaXORo6lmiwBAwD20j/XP92YE/K0=";
|
|
};
|
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
|
buildInputs = [
|
|
libgcrypt
|
|
lvm2
|
|
];
|
|
makeFlags = kernelModuleMakeFlags ++ [
|
|
"KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"bin"
|
|
];
|
|
|
|
installPhase = ''
|
|
install -Dm444 dm-sflc.ko $out/lib/modules/${kernel.modDirVersion}/drivers/md/dm-sflc.ko
|
|
install -Dm555 shufflecake $bin/shufflecake
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Plausible deniability (hidden storage) layer for Linux";
|
|
homepage = "https://shufflecake.net";
|
|
license = licenses.gpl2Only;
|
|
maintainers = with maintainers; [ oluceps ];
|
|
outputsToInstall = [ "bin" ];
|
|
platforms = platforms.linux;
|
|
broken = kernel.kernelOlder "6.1" || kernel.meta.name == "linux-lqx-6.12.1";
|
|
};
|
|
})
|