72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
openssl,
|
|
rocksdb,
|
|
testers,
|
|
protobuf,
|
|
}:
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "surrealdb";
|
|
version = "2.3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "surrealdb";
|
|
repo = "surrealdb";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-gZICuvgMOdwa39i+5ETUDuFfBtSiZuuFOYW5pHPkoms=";
|
|
};
|
|
|
|
cargoHash = "sha256-KndVaz7o0kMtMvQf4NK0pNMaC518keWddmGkYtemeWg=";
|
|
|
|
# error: linker `aarch64-linux-gnu-gcc` not found
|
|
postPatch = ''
|
|
rm .cargo/config.toml
|
|
'';
|
|
|
|
PROTOC = "${protobuf}/bin/protoc";
|
|
PROTOC_INCLUDE = "${protobuf}/include";
|
|
|
|
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
|
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
|
|
|
RUSTFLAGS = "--cfg surrealdb_unstable";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
checkFlags = [
|
|
# requires docker
|
|
"--skip=database_upgrade"
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
command = "surreal version";
|
|
};
|
|
|
|
meta = {
|
|
description = "Scalable, distributed, collaborative, document-graph database, for the realtime web";
|
|
homepage = "https://surrealdb.com/";
|
|
mainProgram = "surreal";
|
|
license = lib.licenses.bsl11;
|
|
maintainers = with lib.maintainers; [
|
|
sikmir
|
|
happysalada
|
|
siriobalmelli
|
|
];
|
|
};
|
|
})
|