Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. import ./default.nix # The root nixpkgs default.nix
  2. {
  3. crossSystem = {
  4. # That's the triplet they use in the mingw-w64 docs,
  5. # and it's relevant for nixpkgs conditions.
  6. config = "x86_64-w64-mingw32";
  7. arch = "x86"; # Irrelevant
  8. libc = "msvcrt"; # This distinguishes the mingw (non posix) toolchain
  9. platform = {};
  10. openssl.system = "mingw64";
  11. };
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement