surrealdb: init at 1.0.0-beta.8
This commit is contained in:
parent
b457130e8a
commit
4e65826439
2 changed files with 55 additions and 0 deletions
51
pkgs/servers/nosql/surrealdb/default.nix
Normal file
51
pkgs/servers/nosql/surrealdb/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
, llvmPackages
|
||||
, rocksdb
|
||||
, testers
|
||||
, surrealdb
|
||||
, SystemConfiguration
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "surrealdb";
|
||||
version = "1.0.0-beta.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "surrealdb";
|
||||
repo = "surrealdb";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-zFqHwZUpwqvuqmS18bhlpAswD5EycB3pnZwSuN5Q2G4=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-vaAfOsbIdQXpx7v4onXY1J8ANKCccVRuWxdvX5+f2no=";
|
||||
|
||||
LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
|
||||
|
||||
ROCKSDB_INCLUDE_DIR = "${rocksdb}/include";
|
||||
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -24532,6 +24532,10 @@ with pkgs;
|
|||
|
||||
storm = callPackage ../servers/computing/storm { };
|
||||
|
||||
surrealdb = callPackage ../servers/nosql/surrealdb {
|
||||
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
|
||||
};
|
||||
|
||||
switcheroo-control = callPackage ../os-specific/linux/switcheroo-control { };
|
||||
|
||||
slurm = callPackage ../servers/computing/slurm { };
|
||||
|
|
Loading…
Reference in a new issue