9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, openssl
|
|
, rocksdb_7_10
|
|
, testers
|
|
, surrealdb
|
|
, SystemConfiguration
|
|
, protobuf
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "surrealdb";
|
|
version = "1.0.0-beta.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "surrealdb";
|
|
repo = "surrealdb";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-GgRsRGYnaE2TssoXdubEuMEbLjM4woE3vxTxSlufquU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-eLJ+sxsK45pkgNUYrNuUOAqutwIjvEhGGjsvwGzfVKI=";
|
|
|
|
# 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_7_10}/include";
|
|
ROCKSDB_LIB_DIR = "${rocksdb_7_10}/lib";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
];
|
|
|
|
buildInputs = [ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [ SystemConfiguration ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = surrealdb;
|
|
command = "surreal version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A scalable, distributed, collaborative, document-graph database, for the realtime web";
|
|
homepage = "https://surrealdb.com/";
|
|
mainProgram = "surreal";
|
|
license = licenses.bsl11;
|
|
maintainers = with maintainers; [ sikmir happysalada ];
|
|
};
|
|
}
|