mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 10:17:34 +00:00
add rethinkdb
This commit is contained in:
parent
c693d2e7fa
commit
e2e923644f
35
pkgs/servers/nosql/rethinkdb/default.nix
Normal file
35
pkgs/servers/nosql/rethinkdb/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv, fetchurl, which, protobuf, v8, ncurses, gperftools, boost, m4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rethinkdb-1.11.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.rethinkdb.com/dist/${name}.tgz";
|
||||
sha256 = "04wz07y891vygc5ksrvkk1ch05xj16nahv20bnxwcllkbl4gf9lj";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
export ALLOW_WARNINGS=1
|
||||
'';
|
||||
|
||||
configureFlags = "--lib-path ${gperftools}/lib";
|
||||
|
||||
buildInputs = [ protobuf v8 ncurses boost ];
|
||||
|
||||
nativeBuildInputs = [ which m4 ];
|
||||
|
||||
|
||||
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.
|
||||
'';
|
||||
homepage = http://www.rethinkdb.com;
|
||||
license = "AGPLv3";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.bluescreen303 ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
@ -6429,6 +6429,8 @@ let
|
||||
|
||||
restund = callPackage ../servers/restund {};
|
||||
|
||||
rethinkdb = callPackage ../servers/nosql/rethinkdb { };
|
||||
|
||||
spamassassin = callPackage ../servers/mail/spamassassin {
|
||||
inherit (perlPackages) HTMLParser NetDNS NetAddrIP DBFile
|
||||
HTTPDate MailDKIM LWP IOSocketSSL;
|
||||
|
Loading…
Reference in New Issue
Block a user