Merge pull request #304330 from Cephian/anki-ssl-fix

anki-bin: add explicit SSL cert path

authored by Aleksana and committed by GitHub 8e5f550a 46a7ee4e

+3 -1
+3 -1
pkgs/games/anki/bin.nix
··· 1 - { fetchurl, stdenv, lib, buildFHSEnv, appimageTools, writeShellScript, anki, undmg, zstd, commandLineArgs ? [] }: 2 3 let 4 pname = "anki-bin"; ··· 57 profile = '' 58 # anki vendors QT and mixing QT versions usually causes crashes 59 unset QT_PLUGIN_PATH 60 ''; 61 62 # Dependencies of anki
··· 1 + { fetchurl, stdenv, lib, buildFHSEnv, appimageTools, writeShellScript, anki, undmg, zstd, cacert, commandLineArgs ? [] }: 2 3 let 4 pname = "anki-bin"; ··· 57 profile = '' 58 # anki vendors QT and mixing QT versions usually causes crashes 59 unset QT_PLUGIN_PATH 60 + # anki uses the system ssl cert, without it plugins do not download/update 61 + export SSL_CERT_FILE="${cacert}/etc/ssl/certs/ca-bundle.crt" 62 ''; 63 64 # Dependencies of anki