summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2020-01-24 12:21:11 +0100
committerJanne Heß <janne@hess.ooo>2020-01-24 12:22:45 +0100
commitd4149412ce8cefba7fc2b1606f1bddba20f44844 (patch)
treeafc7a50014e52f0ec841c677e49cd581ef8dfebc /pkgs
parent40e51d2092f1011c110c895e2818636cc25d4f09 (diff)
downloadnixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.tar
nixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.tar.gz
nixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.tar.bz2
nixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.tar.lz
nixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.tar.xz
nixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.tar.zst
nixpkgs-d4149412ce8cefba7fc2b1606f1bddba20f44844.zip
wine: Look for root certs at $NIX_SSL_CERT_FILE
Closes #78365
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/misc/emulators/wine/base.nix5
-rw-r--r--pkgs/misc/emulators/wine/cert-path.patch24
2 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix
index 0b6eab70263..025158b0717 100644
--- a/pkgs/misc/emulators/wine/base.nix
+++ b/pkgs/misc/emulators/wine/base.nix
@@ -68,6 +68,11 @@ stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) {
   ])
   ++ [ pkgs.xorg.libX11 pkgs.perl ]));
 
+  patches = [
+    # Also look for root certificates at $NIX_SSL_CERT_FILE
+    ./cert-path.patch
+  ];
+
   # Wine locates a lot of libraries dynamically through dlopen().  Add
   # them to the RPATH so that the user doesn't have to set them in
   # LD_LIBRARY_PATH.
diff --git a/pkgs/misc/emulators/wine/cert-path.patch b/pkgs/misc/emulators/wine/cert-path.patch
new file mode 100644
index 00000000000..da01a477810
--- /dev/null
+++ b/pkgs/misc/emulators/wine/cert-path.patch
@@ -0,0 +1,24 @@
+diff --git a/dlls/crypt32/rootstore.c b/dlls/crypt32/rootstore.c
+index f795181..fb4926a 100644
+--- a/dlls/crypt32/rootstore.c
++++ b/dlls/crypt32/rootstore.c
+@@ -18,6 +18,7 @@
+ #include "config.h"
+ #include <stdarg.h>
+ #include <stdio.h>
++#include <stdlib.h> /* getenv */
+ #include <sys/types.h>
+ #ifdef HAVE_SYS_STAT_H
+ #include <sys/stat.h>
+@@ -916,6 +917,11 @@ static void read_trusted_roots_from_known_locations(HCERTSTORE store)
+ 
+         for (i = 0; !ret && i < ARRAY_SIZE(CRYPT_knownLocations); i++)
+             ret = import_certs_from_path(CRYPT_knownLocations[i], from, TRUE);
++
++        char *nix_cert_file = getenv("NIX_SSL_CERT_FILE");
++        if (nix_cert_file != NULL)
++            ret = import_certs_from_path(nix_cert_file, from, TRUE);
++
+         check_and_store_certs(from, store);
+     }
+     CertCloseStore(from, 0);