summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/default.nix
blob: c358565c4551e9c110568e5a50f4d37426f5165d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{stdenv, fetchurl, binutilsCross ? null, gccCross ? null, onlyHeaders ? false}:

let
  name = "mingw-w64-2.0.3";
in
stdenv.mkDerivation (rec {
  inherit name;

  src = fetchurl {
    url = "mirror://sourceforge/mingw-w64/mingw-w64-v2.0.3.tar.gz";
    sha256 = "043jk6z90f9pxs9kfn6ckh2vlnbgcv6yfbp5ybahrj3z58dcijp5";
  };

  # I don't know what's that $host directory about, I put the
  # files inside include as usual.
  postInstall = ''
    rmdir $out/include
    mv $out/x86_64-w64-mingw32/* $out
    rm -R $out/x86_64-w64-mingw32
  '';
} //
(if onlyHeaders then {
  name = name + "-headers";
  preConfingure = ''
    cd mingw-w64-headers
  '';
  configureFlags = "--without-crt --host=x86_64-w64-mingw32";
} else {
  buildInputs = [ gccCross binutilsCross ];

  crossConfig = gccCross.crossConfig;

  dontStrip = true;
})
)