1 2 3 4 5 6 7 8 9 10 11 12 13
with import <nixpkgs> { crossSystem = { config = "x86_64-w64-mingw32"; }; }; let pkgs = import <nixpkgs> {crossSystem = {config = "x86_64-w64-mingw32";};}; in pkgs.mkShell { buildInputs = [ windows.mingw_w64_pthreads ]; }