summary refs log tree commit diff
path: root/pkgs/servers/nosql/rethinkdb
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2015-09-15 18:03:30 -0500
committerAustin Seipp <aseipp@pobox.com>2015-09-15 18:42:12 -0500
commitbab211893bf3e03abb8843d7478628411acd05af (patch)
treeca7b444a5a67563d56f6f27e42e7a73d639c5ded /pkgs/servers/nosql/rethinkdb
parent0d4a3ce4850487682008f53eb377cac43a54b6af (diff)
downloadnixpkgs-bab211893bf3e03abb8843d7478628411acd05af.tar
nixpkgs-bab211893bf3e03abb8843d7478628411acd05af.tar.gz
nixpkgs-bab211893bf3e03abb8843d7478628411acd05af.tar.bz2
nixpkgs-bab211893bf3e03abb8843d7478628411acd05af.tar.lz
nixpkgs-bab211893bf3e03abb8843d7478628411acd05af.tar.xz
nixpkgs-bab211893bf3e03abb8843d7478628411acd05af.tar.zst
nixpkgs-bab211893bf3e03abb8843d7478628411acd05af.zip
nixpkgs: rethinkdb 2.0.4 -> 2.1.3
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'pkgs/servers/nosql/rethinkdb')
-rw-r--r--pkgs/servers/nosql/rethinkdb/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/servers/nosql/rethinkdb/default.nix b/pkgs/servers/nosql/rethinkdb/default.nix
index 789aa95b157..55f77ce0b5d 100644
--- a/pkgs/servers/nosql/rethinkdb/default.nix
+++ b/pkgs/servers/nosql/rethinkdb/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation rec {
   name = "rethinkdb-${version}";
-  version = "2.0.4";
+  version = "2.1.3";
 
   src = fetchurl {
     url = "http://download.rethinkdb.com/dist/${name}.tgz";
-    sha256 = "19qhia4lfa8a0rzp2v6lnlxp2lf4z4vqhgfxnicfdnx07q4r847i";
+    sha256 = "03w9fq3wcvwy04b3x6zb3hvwar7b9jfbpq77rmxdlgh5w64vvgwd";
   };
 
   preConfigure = ''
@@ -30,14 +30,14 @@ stdenv.mkDerivation rec {
   meta = {
     description = "An open-source distributed database built with love";
     longDescription = ''
-      RethinkDB is built to store JSON documents, and scale to multiple machines with very little
-      effort. It has a pleasant query language that supports really useful queries like table joins
-      and group by, and is easy to setup and learn.
+      RethinkDB is built to store JSON documents, and scale to
+      multiple machines with very little effort. It has a pleasant
+      query language that supports really useful queries like table
+      joins and group by, and is easy to setup and learn.
     '';
-    homepage = http://www.rethinkdb.com;
-    license = stdenv.lib.licenses.agpl3;
-
-    maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
-    platforms = stdenv.lib.platforms.all;
+    homepage    = http://www.rethinkdb.com;
+    license     = stdenv.lib.licenses.agpl3;
+    platforms   = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ thoughtpolice bluescreen303 ];
   };
 }