From b5f860d8f288ebbc94d1eb8990a6d30cd10b80e8 Mon Sep 17 00:00:00 2001 From: parth Date: Mon, 6 Jul 2026 19:16:34 -0400 Subject: [PATCH] lockbook-desktop: fix missing libxkbcommon at runtime; build lockbook-desktop crate --- pkgs/by-name/lo/lockbook-desktop/package.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/lo/lockbook-desktop/package.nix b/pkgs/by-name/lo/lockbook-desktop/package.nix index 7a553d786a10..202438779974 100644 --- a/pkgs/by-name/lo/lockbook-desktop/package.nix +++ b/pkgs/by-name/lo/lockbook-desktop/package.nix @@ -40,17 +40,17 @@ rustPlatform.buildRustPackage (finalAttrs: { glib gobject-introspection gdk-pixbuf - libxkbcommon ]; runtimeDependencies = [ vulkan-loader + libxkbcommon ]; doCheck = false; # there are no cli tests cargoBuildFlags = [ "--package" - "lockbook-linux" + "lockbook-desktop" ]; desktopItems = makeDesktopItem { @@ -67,7 +67,6 @@ rustPlatform.buildRustPackage (finalAttrs: { }; postInstall = '' - mv $out/bin/lockbook-linux $out/bin/lockbook-desktop install -D docs/graphics/logo.svg $out/share/icons/hicolor/scalable/apps/lockbook.svg '';