summary refs log tree commit diff
path: root/pkgs/os-specific/windows/mingw-w64/common.nix
blob: 6a28b9e7abd24ff89b31922451d2ebd156f5d0c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{ fetchurl }:

rec {
  version = "5.0.4";
  name = "mingw-w64-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/mingw-w64/mingw-w64-v${version}.tar.bz2";
    sha256 = "00zq3z1hbzd5yzmskskjg79xrzwsqx7ihyprfaxy4hb897vf29sm";
  };
}