blob: 89806e5443a96963fc607e3a9a50b5b0f74b9209 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{ lib, fetchgit, rustPlatform, pkg-config, openssl, systemd }:
rustPlatform.buildRustPackage rec {
pname = "journaldriver";
version = "5656.0.0";
cargoHash = "sha256-uNzgH9UM2DuC+dBn5N9tC1/AosUP6C+RkGLOh6c+u0s=";
src = fetchgit {
url = "https://code.tvl.fyi/depot.git:/ops/journaldriver.git";
sha256 = "0bnf67k6pkw4rngn58b5zm19danr4sh2g6rfd4k5w2sa1lzqai04";
# TVL revision r/5656; as of 2023-01-13 the revision tag is
# unavailable through git, hence the pinned hash.
rev = "4e191353228197ce548d63cb9955e53661244f9c";
};
buildInputs = [ openssl systemd ];
nativeBuildInputs = [ pkg-config ];
meta = with lib; {
description = "Log forwarder from journald to Stackdriver Logging";
homepage = "https://code.tvl.fyi/about/ops/journaldriver";
license = licenses.gpl3;
maintainers = [ maintainers.tazjin ];
platforms = platforms.linux;
mainProgram = "journaldriver";
};
}
|