arangod: tidy maintainers, preConfigure (#200210)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
57cbe7a736
commit
6d83b977f6
1 changed files with 5 additions and 2 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue