47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ lib, rustPlatform, pkg-config, cmake, llvmPackages, openssl, fetchFromGitHub
|
|
, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "tremor";
|
|
version = "0.11.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tremor-rs";
|
|
repo = "tremor-runtime";
|
|
rev = "v${version}";
|
|
sha256 = "0aw6m5gklpgv1frrviv1v1ky898dwbcc1crd65d3gldcmnhvg6ap";
|
|
};
|
|
|
|
cargoSha256 = "1lks3xgnzcccv3hiqgxjpfm4v4g97an8yzfnb2kakw7jkfli6kvi";
|
|
|
|
nativeBuildInputs = [ cmake pkg-config installShellFiles ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
# TODO export TREMOR_PATH($out/lib) variable
|
|
postInstall = ''
|
|
# Copy the standard library to $out/lib
|
|
cp -r ${src}/tremor-script/lib/ $out
|
|
|
|
installShellCompletion --cmd tremor \
|
|
--bash <($out/bin/tremor completions bash) \
|
|
--fish <($out/bin/tremor completions fish) \
|
|
--zsh <($out/bin/tremor completions zsh)
|
|
'';
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
|
|
# OPENSSL_NO_VENDOR - If set, always find OpenSSL in the system, even if the vendored feature is enabled.
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
cargoBuildFlags = [ "-p tremor-cli" ];
|
|
|
|
meta = with lib; {
|
|
description = "Early stage event processing system for unstructured data with rich support for structural pattern matching, filtering and transformation";
|
|
homepage = "https://www.tremor.rs/";
|
|
license = licenses.asl20;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ humancalico ];
|
|
};
|
|
}
|