diff options
author | Maximilian Marx | 2024-04-15 11:22:47 +0200 |
---|---|---|
committer | Maximilian Marx | 2024-04-16 14:19:56 +0200 |
commit | 044343966568b5a7ba61a84c61098521bb2c835a (patch) | |
tree | 267dc1e36448ec134c0da4b495777cc532bead3c /pkgs | |
parent | d6cc760223401840d52f4c9c00245f759c1077fa (diff) |
electron: add pipewire to RPATH
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/development/tools/electron/common.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/electron/common.nix b/pkgs/development/tools/electron/common.nix index 6084fc3c8ebd..edecc91a37cb 100644 --- a/pkgs/development/tools/electron/common.nix +++ b/pkgs/development/tools/electron/common.nix @@ -13,7 +13,7 @@ , unzip , pkgs , pkgsBuildHost - +, pipewire , info }: @@ -194,6 +194,7 @@ in (chromium.override { upstream-info = info.chromium; }).mkDerivation (base: { let libPath = lib.makeLibraryPath [ libnotify + pipewire ]; in base.postFixup + '' |