summary refs log tree commit diff
diff options
context:
space:
mode:
authorRandy Eckenrode <randy@largeandhighquality.com>2023-05-24 17:00:11 -0400
committerRandy Eckenrode <randy@largeandhighquality.com>2023-06-14 20:11:37 -0400
commitd014e56db45098706d770f402abde2c66cfe0b07 (patch)
tree81ab0042f71ecebe14d45a2a91dc4525f36d070c
parent9065884299b6ab835f72198c85a3d7ffb4a58407 (diff)
downloadnixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.tar
nixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.tar.gz
nixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.tar.bz2
nixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.tar.lz
nixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.tar.xz
nixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.tar.zst
nixpkgs-d014e56db45098706d770f402abde2c66cfe0b07.zip
qtpass: fix build with Darwin sandbox enabled
Co-authored-by: toonn <toonn@toonn.io>
-rw-r--r--pkgs/applications/misc/qtpass/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix
index 37fab140321..ad940a77f99 100644
--- a/pkgs/applications/misc/qtpass/default.nix
+++ b/pkgs/applications/misc/qtpass/default.nix
@@ -34,6 +34,9 @@ mkDerivation rec {
     })
   ];
 
+  # HACK `propagatedSandboxProfile` does not appear to actually propagate the sandbox profile from `qt5.qtbase`
+  sandboxProfile = toString qtbase.__propagatedSandboxProfile;
+
   qmakeFlags = [
     # setup hook only sets QMAKE_LRELEASE, set QMAKE_LUPDATE too:
     "QMAKE_LUPDATE=${qttools.dev}/bin/lupdate"