about summary refs log tree commit diff
path: root/pkgs/applications/misc/qtpass
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2019-12-20 22:31:29 +0100
committerNiklas Hambüchen <mail@nh2.me>2019-12-22 03:19:52 +0100
commit213e1298251020469de144b0e0834cda4d0abb4a (patch)
treeef42cae596bc1aa9a245bf4aa739c8248fefeb16 /pkgs/applications/misc/qtpass
parentc94a5f3485dc373216fc6038a6a4a94c82c3b86c (diff)
qtpass: Fix /usr/lib hardcode to pass-otp.
Before, the checkbox for OTP functionality could not be enabled on
NixOS, even when `(pass.withExtensions (exts: [ exts.pass-otp ]))`
was installed correctly.
Diffstat (limited to 'pkgs/applications/misc/qtpass')
-rw-r--r--pkgs/applications/misc/qtpass/default.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix
index f185524da5875..6b68071d4d05c 100644
--- a/pkgs/applications/misc/qtpass/default.nix
+++ b/pkgs/applications/misc/qtpass/default.nix
@@ -1,5 +1,6 @@
 { lib, mkDerivation, fetchFromGitHub
 , git, gnupg, pass, pwgen, qrencode
+, fetchpatch
 , qtbase, qtsvg, qttools, qmake
 }:
 
@@ -25,6 +26,16 @@ mkDerivation rec {
 
   enableParallelBuilding = true;
 
+  patches = [
+    # Fix path to pass-otp plugin `/usr/lib/password-store/extensions/otp.bash` being hardcoded.
+    # TODO: Remove when https://github.com/IJHack/QtPass/pull/499 is merged and available.
+    (fetchpatch {
+      name = "qtpass-Dont-hardcode-pass-otp-usr-lib-path.patch";
+      url = "https://github.com/IJHack/QtPass/commit/2ca9f0ec5a8d709c97a2433c5cd814040c82d4f3.patch";
+      sha256 = "0ljlvqxvarrz2a4j71i66aflrxi84zirb6cg9kvygnvhvm1zbc7d";
+    })
+  ];
+
   qmakeFlags = [
     # setup hook only sets QMAKE_LRELEASE, set QMAKE_LUPDATE too:
     "QMAKE_LUPDATE=${qttools.dev}/bin/lupdate"