about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorSebastian Hagen <sh_c_git@memespace.net>2017-07-03 02:53:13 +0100
committerSebastian Hagen <sh_c_git@memespace.net>2017-07-03 02:53:13 +0100
commitcb9fe8ceadbf9149f506574095ef3645d6b36909 (patch)
tree0aa958e6e0635e8e084d04de6534b83a26fef977 /pkgs/servers
parentc5e314dabe45142d4790cdc9169438ba6e133ec5 (diff)
downloadnixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.tar
nixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.tar.gz
nixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.tar.bz2
nixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.tar.lz
nixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.tar.xz
nixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.tar.zst
nixlib-cb9fe8ceadbf9149f506574095ef3645d6b36909.zip
Mariadb: Fix URL for source tarball.
mariadb.org appears to have changed their URL schemes, and the tarball URL used
by this derivation no longer works, which makes this unbuildable from scratch.

This change updates that URL to a mariadb.org location that will still serve
this tarball.

Hash is unchanged.
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/sql/mariadb/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix
index 4f64afe3d92b..1356915c1fac 100644
--- a/pkgs/servers/sql/mariadb/default.nix
+++ b/pkgs/servers/sql/mariadb/default.nix
@@ -18,8 +18,9 @@ common = rec { # attributes common to both builds
   version = "10.1.21";
 
   src = fetchurl {
-    url    = "https://downloads.mariadb.org/interstitial/mariadb-${version}/source/mariadb-${version}.tar.gz";
+    url    = "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz/from/http%3A//ftp.hosteurope.de/mirror/archive.mariadb.org/?serve";
     sha256 = "144lcm5awcf0k6a7saqfr4p2kg8r5wbdhdm4cmn2m8hyg1an70as";
+    name   = "mariadb-${version}.tar.gz";
   };
 
   prePatch = ''