about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorGabriel Fontes <hi@m7.rs>2023-02-27 15:58:51 -0300
committerGabriel Fontes <hi@m7.rs>2023-02-27 15:59:28 -0300
commit2d0a4d55c7c582992dceff56b069577de006ee8f (patch)
tree1b4dfd8cde47f06ccd9e82c3128562a61b8790a6 /pkgs/applications/office
parentb4c4419b05700f5a0af8a9d603f293404d75854e (diff)
onlyoffice-bin: add gcc lib to runtimeInputs
OnlyOffice is currently not launching
(https://github.com/NixOS/nixpkgs/issues/218238), due to a missing
library (libstdc++.so.6).

I used nix-locate to see which outputs provide it, and
`gcc-unwrapped.lib` is the one that makes more sense to me, but I'm not
sure if there's a better way to supply that lib.
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/onlyoffice-bin/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/office/onlyoffice-bin/default.nix b/pkgs/applications/office/onlyoffice-bin/default.nix
index 62e97670c2b60..e2dfb12c92f94 100644
--- a/pkgs/applications/office/onlyoffice-bin/default.nix
+++ b/pkgs/applications/office/onlyoffice-bin/default.nix
@@ -12,6 +12,7 @@
 , dconf
 , dpkg
 , fontconfig
+, gcc-unwrapped
 , gdk-pixbuf
 , glib
 , glibc
@@ -66,6 +67,7 @@ let
   runtimeLibs = lib.makeLibraryPath [
     curl
     glibc
+    gcc-unwrapped.lib
     libudev0-shim
     pulseaudio
   ];