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

26 lines
765 B
Nix
Raw Normal View History

2018-06-17 16:49:29 +00:00
{ lib, fetchFromGitHub, rustPlatform, pkgconfig, openssl, systemd }:
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "journaldriver";
version = "1.1.0";
cargoSha256 = "1vyc9pglppfz5idahvcj01wpmmm6jw043zk896wdksywa5zcqn28";
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 ];
nativeBuildInputs = [ pkgconfig ];
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;
};
}