2598bf519d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/arangodb/versions. These checks were done: - built on NixOS - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangobench --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangobench --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangodump --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangodump --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangoexport --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangoexport --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangoimp --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangoimp --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangorestore --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangorestore --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangosh --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangosh --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangovpack --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangovpack --version` and found version 3.3.5 - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangod --help` got 0 exit code - ran `/nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5/bin/arangod --version` and found version 3.3.5 - found 3.3.5 with grep in /nix/store/q4bysqkv943yxr5bbyg5ph26py192q04-arangodb-3.3.5 - directory tree listing: https://gist.github.com/337ef8c0118bd40661d6f7e5ee70d7b0
40 lines
995 B
Nix
40 lines
995 B
Nix
{ stdenv, fetchFromGitHub
|
|
, openssl, zlib, python2Packages, readline, cmake, python }:
|
|
|
|
let
|
|
in stdenv.mkDerivation rec {
|
|
version = "3.3.5";
|
|
name = "arangodb-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "arangodb";
|
|
owner = "arangodb";
|
|
rev = "v${version}";
|
|
sha256 = "1015fi47m0j71l6wmp7n06qk0x2h3337sjqxfyan5dnnb0himzb6";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|