From aee0236e8313b2fdf8e741593620046e4ab379fe Mon Sep 17 00:00:00 2001 From: Xaiya Schumin Date: Fri, 22 May 2026 16:28:56 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20last=20fix=20up=20for=20discord-mus?= =?UTF-8?q?ic-presence?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Xaiya Schumin --- pkgs/discord-music-presence.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/discord-music-presence.nix b/pkgs/discord-music-presence.nix index 4287269..584bd21 100644 --- a/pkgs/discord-music-presence.nix +++ b/pkgs/discord-music-presence.nix @@ -16,6 +16,9 @@ libgpg-error, + openssl, + cacert, + makeWrapper, xkeyboard_config }: @@ -41,6 +44,9 @@ stdenv.mkDerivation rec { wayland libGL + openssl + cacert + fontconfig freetype libgpg-error @@ -61,7 +67,9 @@ stdenv.mkDerivation rec { postFixup = '' wrapProgram $out/bin/${pname} \ - --set XKB_CONFIG_ROOT ${xkeyboard_config}/share/X11/xkb + --set XKB_CONFIG_ROOT ${xkeyboard_config}/share/X11/xkb \ + --set SSL_CERT_FILE ${cacert}/etc/ssl/certs/ca-bundle.crt \ + --set OPENSSL_CONF ${openssl.out}/etc/ssl/openssl.cnf \ ''; meta = {