Merge pull request #275805 from oluceps/shufflecake

shufflecake: init at 0.4.4
This commit is contained in:
Nick Cao 2024-02-10 10:28:53 -05:00 committed by GitHub
commit c09ca927ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib, kernel, stdenv, fetchFromGitea, libgcrypt, lvm2 }:
stdenv.mkDerivation (finalAttrs: {
name = "shufflecake";
version = "0.4.4";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "shufflecake";
repo = "shufflecake-c";
rev = "v${finalAttrs.version}";
hash = "sha256-zvGHM5kajJlROI8vg1yZQ5NvJvuGLV2iKvumdW8aglA=";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
buildInputs = [ libgcrypt lvm2 ];
makeFlags = kernel.makeFlags ++ [
"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 = "A 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";
};
})

View File

@ -492,6 +492,8 @@ in {
rr-zen_workaround = callPackage ../development/tools/analysis/rr/zen_workaround.nix { };
shufflecake = callPackage ../os-specific/linux/shufflecake {};
sysdig = callPackage ../os-specific/linux/sysdig {};
systemtap = callPackage ../development/tools/profiling/systemtap { };