Commit a1c851ae authored by Lukas Rieger's avatar Lukas Rieger
Browse files

libation: add glib to runtimeDeps

libglib is loaded via P/Invoke (dlopen) at runtime for the web view
login dialog, but was not included in runtimeDeps. This caused a
'Unable to load shared library libglib' error on NixOS.
parent 3c78aa18
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
  fetchFromGitHub,
  dotnetCorePackages,
  wrapGAppsHook3,
  glib,
  glew,
  gtk3,
  libxrandr,
@@ -56,6 +57,8 @@ buildDotnetModule rec {
    libxcursor
    # For file dialogs
    gtk3
    # For web view (login dialog); loaded via P/Invoke at runtime
    glib
  ];

  postInstall = ''