mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
744665e3c4
This is apparently a typo that has not been fixed. Also remove unused configureFlags.
12 lines
245 B
Nix
12 lines
245 B
Nix
{ 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";
|
|
};
|
|
}
|