Commit a59c7364 authored by Francesco Gazzetta's avatar Francesco Gazzetta
Browse files

warzone2100: fix fetch url

The previous url always redirects to the latest version.
See #272701 and https://github.com/Warzone2100/warzone2100/issues/3565.
parent 898f3557
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
  version  = "4.4.1";

  src = fetchurl {
    url = "mirror://sourceforge/${pname}/releases/${version}/${pname}_src.tar.xz";
    url = "mirror://sourceforge/project/warzone2100/releases/${version}/warzone2100_src.tar.xz";
    hash = "sha256-8vbwO4PXEOyZqGiSz1yqhe8jfe4E4iv908mc+8xuH8I=";
  };