Commit 2467e933 authored by eljamm's avatar eljamm
Browse files

linuxPackages.shufflecake: 0.5.2 -> 0.5.5

parent 4d63ecab
Loading
Loading
Loading
Loading
+7 −6
Original line number Diff line number Diff line
@@ -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";
  };
})