Merge pull request #7647 from flosse/arangodb
pkgs: added ArangoDB 2.5.2
This commit is contained in:
commit
406e23168d
34
pkgs/servers/nosql/arangodb/default.nix
Normal file
34
pkgs/servers/nosql/arangodb/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, openssl, zlib, python, gyp, bash, go, readline }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "2.5.3";
|
||||||
|
name = "arangodb-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
repo = "arangodb";
|
||||||
|
owner = "arangodb";
|
||||||
|
rev = "67d995aa22ea341129398326fa10c5f6c14e94e9";
|
||||||
|
sha256 = "1v07fghf2jd2mvkfqhag0xblf6sxw7kx9kmhs2xpyrpns58lirvc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
openssl zlib python gyp go readline
|
||||||
|
];
|
||||||
|
|
||||||
|
configureFlagsArray = [ "--with-openssl-lib=${openssl}/lib" ];
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
substituteInPlace 3rdParty/V8-3.31.74.1/build/gyp/gyp --replace /bin/bash ${bash}/bin/bash
|
||||||
|
substituteInPlace 3rdParty/etcd/build --replace /bin/bash ${bash}/bin/bash
|
||||||
|
'';
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/arangodb/arangodb";
|
||||||
|
description = "A native multi-model database with flexible data models for documents, graphs, and key-values";
|
||||||
|
license = licenses.asl20;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.flosse ];
|
||||||
|
};
|
||||||
|
}
|
@ -544,6 +544,10 @@ let
|
|||||||
|
|
||||||
arandr = callPackage ../tools/X11/arandr { };
|
arandr = callPackage ../tools/X11/arandr { };
|
||||||
|
|
||||||
|
arangodb = callPackage ../servers/nosql/arangodb {
|
||||||
|
inherit (pythonPackages) gyp;
|
||||||
|
};
|
||||||
|
|
||||||
arcanist = callPackage ../development/tools/misc/arcanist {};
|
arcanist = callPackage ../development/tools/misc/arcanist {};
|
||||||
|
|
||||||
arduino = arduino-core.override { withGui = true; };
|
arduino = arduino-core.override { withGui = true; };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user