1 { lib, rustPlatform, pkg-config, cmake, llvmPackages, openssl, fetchFromGitHub
4 rustPlatform.buildRustPackage rec {
8 src = fetchFromGitHub {
10 repo = "tremor-runtime";
12 sha256 = "1z1khxfdj2j0xf7dp0x2cd9kl6r4qicp7kc4p4sdky2yib66512y";
15 cargoSha256 = "sha256-rN/d6BL2d0D0ichQR6v0543Bh/Y2ktz8ExMH50M8B8c=";
17 nativeBuildInputs = [ cmake pkg-config installShellFiles ];
19 buildInputs = [ openssl ];
22 installShellCompletion --cmd tremor \
23 --bash <($out/bin/tremor completions bash) \
24 --fish <($out/bin/tremor completions fish) \
25 --zsh <($out/bin/tremor completions zsh)
28 LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
30 # OPENSSL_NO_VENDOR - If set, always find OpenSSL in the system, even if the vendored feature is enabled.
31 OPENSSL_NO_VENDOR = 1;
33 cargoBuildFlags = [ "--all" ];
36 description = "Early stage event processing system for unstructured data with rich support for structural pattern matching, filtering and transformation";
37 homepage = "https://www.tremor.rs/";
38 license = licenses.asl20;
39 platforms = [ "x86_64-linux" ];
40 maintainers = with maintainers; [ humancalico ];