Skip to content

Commit 6590465

Browse files
committedJul 3, 2017
Merge #27076: mariadb: fix URL for source tarball
Not even all their mirrors serve our version, unfortunately. (cherry picked from commit cc83f35)
1 parent 8ad1e63 commit 6590465

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎pkgs/servers/sql/mariadb/default.nix

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ common = rec { # attributes common to both builds
1818
version = "10.1.21";
1919

2020
src = fetchurl {
21-
url = "https://downloads.mariadb.org/interstitial/mariadb-${version}/source/mariadb-${version}.tar.gz";
21+
url = "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz/from/http%3A//ftp.hosteurope.de/mirror/archive.mariadb.org/?serve";
2222
sha256 = "144lcm5awcf0k6a7saqfr4p2kg8r5wbdhdm4cmn2m8hyg1an70as";
23+
name = "mariadb-${version}.tar.gz";
2324
};
2425

2526
prePatch = ''

0 commit comments

Comments
 (0)
Please sign in to comment.