linuxPackages.shufflecake: 0.5.2 -> 0.5.5

This commit is contained in:
eljamm
2025-11-04 22:53:08 +01:00
parent 4d63ecabd3
commit 2467e93356
@@ -9,13 +9,14 @@
}:
stdenv.mkDerivation (finalAttrs: {
name = "shufflecake";
version = "0.5.2";
version = "0.5.5";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "shufflecake";
repo = "shufflecake-c";
rev = "v${finalAttrs.version}";
hash = "sha256-EF9VKaqcNJt3hd/CUT+QeW17tc5ByStDanGGwi4uL4s=";
hash = "sha256-xVuI7tRARPFuETCCKYt507WpvZVZLaj9dhBkhJ03zc8=";
};
nativeBuildInputs = kernel.moduleBuildDependencies;
@@ -44,13 +45,13 @@ stdenv.mkDerivation (finalAttrs: {
install -Dm555 shufflecake $bin/shufflecake
'';
meta = with lib; {
meta = {
description = "Plausible deniability (hidden storage) layer for Linux";
homepage = "https://shufflecake.net";
license = licenses.gpl2Only;
maintainers = with maintainers; [ oluceps ];
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ oluceps ];
outputsToInstall = [ "bin" ];
platforms = platforms.linux;
platforms = lib.platforms.linux;
broken = kernel.kernelOlder "6.1" || kernel.meta.name == "linux-lqx-6.12.1";
};
})