summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Jensen <erikjensen@rkjnsn.net>2023-01-04 14:00:05 -0800
committerErik Jensen <erikjensen@rkjnsn.net>2023-01-04 14:17:57 -0800
commit52a31a76f46e60fd9b55fe8576f4379bac8a07f0 (patch)
treeef921b5908bd3c43ec5c7a406297dae05cab0d66
parentMerge pull request #208547 from ncfavier/backport-webhook-module (diff)
downloadnixpkgs-52a31a76f46e60fd9b55fe8576f4379bac8a07f0.tar.gz
yubioath-desktop: Fix dependencies on 22.11
yubioath-desktop has been removed on unstable in favor of yubioath-flutter, but 22.11 currently only has the former, and it's broken due to #202295. This change fixes it by depending on the previous, compatible version of the yubikey-manager library.
-rw-r--r--pkgs/applications/misc/yubioath-desktop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/yubioath-desktop/default.nix b/pkgs/applications/misc/yubioath-desktop/default.nix
index 8a1645239082..86aff4280f07 100644
--- a/pkgs/applications/misc/yubioath-desktop/default.nix
+++ b/pkgs/applications/misc/yubioath-desktop/default.nix
@@ -11,7 +11,7 @@
, pyotherside
, pcsclite
, yubikey-personalization
-, yubikey-manager
+, yubikey-manager4
, makeWrapper
}:
@@ -35,7 +35,7 @@ mkDerivation rec {
--replace 'target.path = $$PREFIX/lib' 'target.path = $$PREFIX/bin'
'';
- pythonPath = [ yubikey-manager ];
+ pythonPath = [ yubikey-manager4 ];
# Need LD_PRELOAD for libykpers as the Nix cpython disables ctypes.cdll.LoadLibrary
# support that the yubicommon library uses to load libykpers