linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / tremor-rs / default.nix
blobfb1268acc6fa861ad288c9d1a9a50f35cce869f6
1 { lib, rustPlatform, pkg-config, cmake, llvmPackages, openssl, fetchFromGitHub
2 , installShellFiles }:
4 rustPlatform.buildRustPackage rec {
5   pname = "tremor";
6   version = "0.10.1";
8   src = fetchFromGitHub {
9     owner = "tremor-rs";
10     repo = "tremor-runtime";
11     rev = "v${version}";
12     sha256 = "1z1khxfdj2j0xf7dp0x2cd9kl6r4qicp7kc4p4sdky2yib66512y";
13   };
15   cargoSha256 = "sha256-rN/d6BL2d0D0ichQR6v0543Bh/Y2ktz8ExMH50M8B8c=";
17   nativeBuildInputs = [ cmake pkg-config installShellFiles ];
19   buildInputs = [ openssl ];
21   postInstall = ''
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)
26   '';
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" ];
35   meta = with lib; {
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 ];
41   };