···2 name, version, src, mingwGccs, monos, geckos, platforms,
3 pkgconfig, fontforge, makeWrapper, flex, bison,
4 supportFlags,
05 buildScript ? null, configureFlags ? []
6}:
7···910let
11 vkd3d = callPackage ./vkd3d.nix {};
012in
13stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) {
14 builder = buildScript;
···73 ])
74 ++ [ pkgs.xorg.libX11 pkgs.perl ]));
7576- patches = [
77- # Also look for root certificates at $NIX_SSL_CERT_FILE
78- ./cert-path.patch
79- ];
8081 # Wine locates a lot of libraries dynamically through dlopen(). Add
82 # them to the RPATH so that the user doesn't have to set them in
···2 name, version, src, mingwGccs, monos, geckos, platforms,
3 pkgconfig, fontforge, makeWrapper, flex, bison,
4 supportFlags,
5+ patches,
6 buildScript ? null, configureFlags ? []
7}:
8···1011let
12 vkd3d = callPackage ./vkd3d.nix {};
13+ patches' = patches;
14in
15stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) {
16 builder = buildScript;
···75 ])
76 ++ [ pkgs.xorg.libX11 pkgs.perl ]));
7778+ patches = [ ] ++ patches';
0007980 # Wine locates a lot of libraries dynamically through dlopen(). Add
81 # them to the RPATH so that the user doesn't have to set them in