nixpkgs/pkgs/tools/misc/journaldriver/default.nix

26 lines
767 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl, systemd }:
2018-06-17 16:49:29 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "journaldriver";
version = "1.1.0";
cargoSha256 = "1gzfwkcm63fn41jls16c5sqxz28b0hrfpjhwsvvbwcfv40qxjhsg";
2018-06-17 16:49:29 +00:00
src = fetchFromGitHub {
owner = "tazjin";
2018-06-17 16:49:29 +00:00
repo = "journaldriver";
rev = "v${version}";
sha256 = "0672iq6s9klb1p37hciyl7snbjgjw98kwrbfkypv07lplc5qcnrf";
2018-06-17 16:49:29 +00:00
};
buildInputs = [ openssl systemd ];
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2018-06-17 16:49:29 +00:00
meta = with lib; {
description = "Log forwarder from journald to Stackdriver Logging";
homepage = "https://github.com/tazjin/journaldriver";
2018-06-17 16:49:29 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.tazjin ];
platforms = platforms.linux;
};
}