Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

mariadb: 10.2.13 -> 10.2.17

Bump to latest stable version of the 10.2.x branch. Besides many bug fixes the
following security related issues have been fixed:
- CVE-2018-3060
- CVE-2018-3064
- CVE-2018-3063
- CVE-2018-3058
- CVE-2018-3066
(probably more from before 10.2.16)

Release notes: https://mariadb.com/kb/en/library/mariadb-10217-release-notes/

(cherry picked from commit 6c3d99c7645f7c7f8331c1c7ff7453bfaeb21cc2)

authored by Andreas Rammhold and committed by Vladimír Čunát 8a804f70 549d76c2

+6 -3
+6 -3
pkgs/servers/sql/mariadb/default.nix
··· 15 15 }; 16 16 17 17 common = rec { # attributes common to both builds 18 - version = "10.2.13"; 18 + version = "10.2.17"; 19 19 20 20 src = fetchurl { 21 - url = "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz"; 22 - sha256 = "0ly7dxc7rk327liya4kalgsw8irlxl0pl8gq0agdl18a63cpwbi7"; 21 + urls = [ 22 + "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz" 23 + "https://downloads.mariadb.com/MariaDB/mariadb-${version}/source/mariadb-${version}.tar.gz" 24 + ]; 25 + sha256 = "09xy6mgnz22mz8zgqlnddn8nzgs9xlz8lai4a7aa8x78in7hgcz7"; 23 26 name = "mariadb-${version}.tar.gz"; 24 27 }; 25 28