Skip to content

Commit

Permalink
mingw-64: 6.0.0 -> 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pstn committed Jul 20, 2021
1 parent 595a151 commit c60a0b0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions nixos/doc/manual/from_md/release-notes/rl-2111.section.xml
Original file line number Diff line number Diff line change
Expand Up @@ -523,6 +523,12 @@
2020 to 2021
</para>
</listitem>
<listitem>
<para>
the <literal>mingw-64</literal> package has been upgraded from
6.0.0 to 9.0.0
</para>
</listitem>
</itemizedlist>
</section>
<section xml:id="sec-release-21.11-notable-changes">
Expand Down
2 changes: 2 additions & 0 deletions nixos/doc/manual/release-notes/rl-2111.section.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ In addition to numerous new and upgraded packages, this release has the followin

- The `isabelle` package has been upgraded from 2020 to 2021

- the `mingw-64` package has been upgraded from 6.0.0 to 9.0.0

## Other Notable Changes {#sec-release-21.11-notable-changes}

- The setting [`services.openssh.logLevel`](options.html#opt-services.openssh.logLevel) `"VERBOSE"` `"INFO"`. This brings NixOS in line with upstream and other Linux distributions, and reduces log spam on servers due to bruteforcing botnets.
Expand Down
4 changes: 2 additions & 2 deletions pkgs/os-specific/windows/mingw-w64/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ lib, stdenv, windows, fetchurl }:

let
version = "6.0.0";
version = "9.0.0";
in stdenv.mkDerivation {
pname = "mingw-w64";
inherit version;

src = fetchurl {
url = "mirror://sourceforge/mingw-w64/mingw-w64-v${version}.tar.bz2";
sha256 = "1w28mynv500y03h92nh87rgw3fnp82qwnjbxrrzqkmr63q812pl0";
sha256 = "10a15bi4lyfi0k0haj0klqambicwma6yi7vssgbz8prg815vja8r";
};

outputs = [ "out" "dev" ];
Expand Down

0 comments on commit c60a0b0

Please sign in to comment.