about summary refs log tree commit diff
path: root/pkgs/servers/sql
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2014-06-05 02:20:36 -0500
committerAustin Seipp <aseipp@pobox.com>2014-06-05 06:05:07 -0500
commit463ed1bb640efcd3b3714a67e94800a6003eb320 (patch)
tree42f72289123329befb6dd54b17fcf551745f16c6 /pkgs/servers/sql
parent1da6a7d4a915e48934fbaa27fe01db1211d00df7 (diff)
downloadnixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.tar
nixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.tar.gz
nixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.tar.bz2
nixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.tar.lz
nixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.tar.xz
nixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.tar.zst
nixlib-463ed1bb640efcd3b3714a67e94800a6003eb320.zip
mariadb: 10.0.10 -> 10.0.11
Also, enable the TokuDB plugin, as it now builds (there were some bugs
in the non-GA release that prevented that).

Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/servers/sql')
-rw-r--r--pkgs/servers/sql/mariadb/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix
index a6105c128906..d0f7f5ef3e52 100644
--- a/pkgs/servers/sql/mariadb/default.nix
+++ b/pkgs/servers/sql/mariadb/default.nix
@@ -1,16 +1,17 @@
 { stdenv, fetchurl, cmake, ncurses, openssl, bison, boost, libxml2, libaio, judy, libevent, groff }:
 
 stdenv.mkDerivation rec {
-  name = "mariadb-10.0.10";
+  name = "mariadb-${version}";
+  version = "10.0.11";
 
   src = fetchurl {
-    url = "https://fossies.org/linux/misc/${name}.tar.gz";
-    md5 = "14ce22b8197d4eae88d237776d47220f";
+    url    = "https://fossies.org/linux/misc/${name}.tar.gz";
+    sha256 = "1p8h06kns30rlbnzw9ddmihs7r3jhp8xlrl4r6h5d107wkcw86v3";
   };
 
   buildInputs = [ cmake ncurses openssl bison boost libxml2 libaio judy libevent groff ];
 
-  cmakeFlags = [ "-DWITH_READLINE=yes" "-DWITH_EMBEDDED_SERVER=yes" "-DWITHOUT_TOKUDB=1" "-DINSTALL_SCRIPTDIR=bin" ];
+  cmakeFlags = [ "-DWITH_READLINE=yes" "-DWITH_EMBEDDED_SERVER=yes" "-DINSTALL_SCRIPTDIR=bin" ];
 
   enableParallelBuilding = true;
 
@@ -20,7 +21,7 @@ stdenv.mkDerivation rec {
     description = "An enhanced, drop-in replacement for MySQL";
     homepage    = https://mariadb.org/;
     license     = stdenv.lib.licenses.gpl2;
-    maintainers = [ stdenv.lib.maintainers.shlevy ];
+    maintainers = with stdenv.lib.maintainers; [ shlevy thoughtpolice ];
     platforms   = stdenv.lib.platforms.all;
   };
 }