nixpkgs/pkgs/servers/nosql/arangodb/default.nix

40 lines
979 B
Nix

{ stdenv, fetchFromGitHub
, openssl, zlib, readline, cmake, python }:
let
in stdenv.mkDerivation rec {
version = "3.3.12";
name = "arangodb-${version}";
src = fetchFromGitHub {
repo = "arangodb";
owner = "arangodb";
rev = "v${version}";
sha256 = "18mx7bcxll1za91q090g3hps3mwrlqdg40lvs61kibci3amma7j2";
};
buildInputs = [
openssl zlib readline python
];
nativeBuildInputs = [ cmake ];
postPatch = ''
sed -ie 's!/bin/echo!echo!' 3rdParty/V8/v*/gypfiles/*.gypi
'';
configureFlagsArray = [ "--with-openssl-lib=${openssl.out}/lib" ];
NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow";
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 ];
};
}