From 2467e9335635a8efa0ffad47f58e3939028a6128 Mon Sep 17 00:00:00 2001 From: eljamm Date: Tue, 4 Nov 2025 22:53:08 +0100 Subject: [PATCH] linuxPackages.shufflecake: 0.5.2 -> 0.5.5 --- pkgs/os-specific/linux/shufflecake/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/shufflecake/default.nix b/pkgs/os-specific/linux/shufflecake/default.nix index f8bda2bcfd5b..c087b0c55382 100644 --- a/pkgs/os-specific/linux/shufflecake/default.nix +++ b/pkgs/os-specific/linux/shufflecake/default.nix @@ -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"; }; })