anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / tools / misc / flowgger / default.nix
blob1cff8298ca9beb94091eb76c614e82ee0c71c28f
1 { lib
2 , rustPlatform
3 , stdenv
4 , fetchCrate
5 , pkg-config
6 , openssl
7 , capnproto
8 , CoreServices
9 }:
11 rustPlatform.buildRustPackage rec {
12   pname = "flowgger";
13   version = "0.3.2";
15   src = fetchCrate {
16     inherit pname version;
17     hash = "sha256-eybahv1A/AIpAXGj6/md8k+b9fu9gSchU16fnAWZP2s=";
18   };
20   cargoHash = "sha256-DZGyX3UDqCjB5NwCXcR8b9pXdq8qacd3nkqGp6vYb+U=";
22   nativeBuildInputs = [
23     pkg-config
24     capnproto
25   ];
27   buildInputs = [ openssl ]
28     ++ lib.optional stdenv.hostPlatform.isDarwin CoreServices;
30   checkFlags = [
31     # test failed
32     "--skip=flowgger::encoder::ltsv_encoder::test_ltsv_full_encode_multiple_sd"
33     "--skip=flowgger::encoder::ltsv_encoder::test_ltsv_full_encode_no_sd"
34   ];
36   meta = with lib; {
37     homepage = "https://github.com/awslabs/flowgger";
38     description = "Fast, simple and lightweight data collector written in Rust";
39     license = licenses.bsd2;
40     maintainers = [ ];
41     mainProgram = "flowgger";
42   };