surrealpatch/pkg/nix/spec/x86_64-pc-windows-gnu.nix
2022-10-04 17:32:44 +01:00

17 lines
300 B
Nix

{ pkgs, target, util }:
{
inherit target;
features = with util.features; [ default ];
buildSpec = with pkgs; {
strictDeps = true;
depsBuildBuild = [ pkgsCross.mingwW64.stdenv.cc ];
buildInputs = [ pkgsCross.mingwW64.windows.pthreads ];
CARGO_BUILD_TARGET = target;
};
}