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

29 lines
850 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";
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
cargoSha256 = "0wmr0r54ar7gvhvhv76a49ap74lx8hl79bf73vc4f4xlj7hj303g";
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;
};
}