use the sourceforge mirrors everywhere

find pkgs -name "*.nix" -exec sed -r \
    "s|https?://downloads.sourceforge.net/|mirror://sourceforge/|g" -i {} \;
This commit is contained in:
zimbatm
2016-02-28 12:07:42 +00:00
parent b871649530
commit 69ce5cb656
45 changed files with 49 additions and 49 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchurl {
url = "http://downloads.sourceforge.net/sourceforge/premake/${baseName}-src-${version}.zip";
url = "mirror://sourceforge/sourceforge/premake/${baseName}-src-${version}.zip";
sha256 = "b59841a519e75d5b6566848a2c5be2f91455bf0cc6ae4d688fcbd4c40db934d5";
};