arangod: tidy maintainers, preConfigure (#200210)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
John Soo 2022-11-10 16:10:18 -08:00 committed by GitHub
parent 57cbe7a736
commit 6d83b977f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,6 @@ gcc10Stdenv.mkDerivation rec {
# prevent failing with "cmake-3.13.4/nix-support/setup-hook: line 10: ./3rdParty/rocksdb/RocksDBConfig.cmake.in: No such file or directory"
dontFixCmake = true;
NIX_CFLAGS_COMPILE = "-Wno-error";
preConfigure = "patchShebangs utils";
postPatch = ''
sed -ie 's!/bin/echo!echo!' 3rdParty/V8/gypfiles/*.gypi
@ -59,6 +58,10 @@ gcc10Stdenv.mkDerivation rec {
substituteInPlace js/server/server.js --replace "require('@arangodb').checkAvailableVersions();" ""
'';
preConfigure = ''
patchShebangs utils
'';
cmakeFlags = [
"-DUSE_MAINTAINER_MODE=OFF"
"-DUSE_GOOGLE_TESTS=OFF"
@ -76,6 +79,6 @@ gcc10Stdenv.mkDerivation rec {
description = "A native multi-model database with flexible data models for documents, graphs, and key-values";
license = licenses.asl20;
platforms = [ "x86_64-linux" ];
maintainers = [ maintainers.flosse maintainers.jsoo1 ];
maintainers = with maintainers; [ flosse jsoo1 ];
};
}