forked from mirrors/nixpkgs
092f4193cd
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 - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/foxx-manager passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangoinspect passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangobench passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangodump passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangoexport passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangoimp passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangorestore passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangosh passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangovpack passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arango-dfdb passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arango-init-database passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arango-secure-installation passed the binary check. - /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11/bin/arangod passed the binary check. - 13 of 13 passed binary check by having a zero exit code. - 0 of 13 passed binary check by having the new version present in output. - found 3.3.11 with grep in /nix/store/naj61i7k3knl6h4anl6ilar8rsb5q44c-arangodb-3.3.11 - directory tree listing: https://gist.github.com/c85df63a5de699920581d43d50632b57 - du listing: https://gist.github.com/14a76494487774fdcab46a1042b042c8
40 lines
996 B
Nix
40 lines
996 B
Nix
{ stdenv, fetchFromGitHub
|
|
, openssl, zlib, python2Packages, readline, cmake, python }:
|
|
|
|
let
|
|
in stdenv.mkDerivation rec {
|
|
version = "3.3.11";
|
|
name = "arangodb-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "arangodb";
|
|
owner = "arangodb";
|
|
rev = "v${version}";
|
|
sha256 = "0x1sq2gvag7adba5nsx913dax2b2259h73623r0b7gn4v01ivq21";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|