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.
This commit is contained in:
Gabriel Fontes 2023-02-27 15:58:51 -03:00
parent b4c4419b05
commit 2d0a4d55c7
No known key found for this signature in database
GPG Key ID: 2E54EA7BFE630916

View File

@ -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
];