nixpkgs/pkgs/servers/nosql/surrealdb/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.3 KiB
Nix
Raw Normal View History

2022-11-16 01:08:02 +00:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, pkg-config
, openssl
, llvmPackages
, rocksdb
, testers
, surrealdb
, SystemConfiguration
, protobuf
2022-11-16 01:08:02 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "surrealdb";
version = "1.0.0-beta.9";
2022-11-16 01:08:02 +00:00
src = fetchFromGitHub {
owner = "surrealdb";
repo = "surrealdb";
rev = "v${version}";
sha256 = "sha256-GgRsRGYnaE2TssoXdubEuMEbLjM4woE3vxTxSlufquU=";
2022-11-16 01:08:02 +00:00
};
cargoSha256 = "sha256-eLJ+sxsK45pkgNUYrNuUOAqutwIjvEhGGjsvwGzfVKI=";
2022-11-16 01:08:02 +00:00
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
2022-11-16 01:08:02 +00:00
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
nativeBuildInputs = [
pkg-config
2022-11-19 23:33:18 +00:00
# needed on top of LIBCLANG_PATH to compile rquickjs
llvmPackages.clang
2022-11-16 01:08:02 +00:00
];
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 ];
};
}