journaldriver: 1.0.0 -> 1.1.0 (#48106)

Included changes:

* upstream repository has moved, URLs changed accordingly
* journaldriver bumped to new upstream release

The new release includes an important workaround for an issue that
could cause log-forwarding to fail after service restarts due to
invalid journal cursors being persisted.
This commit is contained in:
Vincent Ambo 2018-10-09 23:45:43 +02:00 committed by xeji
parent dd58c35332
commit 5ead27394d
2 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@
# to be set. # to be set.
# #
# For further information please consult the documentation in the # For further information please consult the documentation in the
# upstream repository at: https://github.com/aprilabank/journaldriver/ # upstream repository at: https://github.com/tazjin/journaldriver/
{ config, lib, pkgs, ...}: { config, lib, pkgs, ...}:

View File

@ -2,14 +2,14 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
name = "journaldriver-${version}"; name = "journaldriver-${version}";
version = "1.0.0"; version = "1.1.0";
cargoSha256 = "04llhriwsrjqnkbjgd22nhci6zmhadclnd8r2bw5092gwdamf49k"; cargoSha256 = "03rq96hzv97wh2gbzi8sz796bqgh6pbpvdn0zy6zgq2f2sgkavsl";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aprilabank"; owner = "tazjin";
repo = "journaldriver"; repo = "journaldriver";
rev = "v${version}"; rev = "v${version}";
sha256 = "1163ghf7dxxchyawdaa7zdi8ly2pxmc005c2k549larbirjjbmgc"; sha256 = "0672iq6s9klb1p37hciyl7snbjgjw98kwrbfkypv07lplc5qcnrf";
}; };
buildInputs = [ openssl systemd ]; buildInputs = [ openssl systemd ];
@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; { meta = with lib; {
description = "Log forwarder from journald to Stackdriver Logging"; description = "Log forwarder from journald to Stackdriver Logging";
homepage = "https://github.com/aprilabank/journaldriver"; homepage = "https://github.com/tazjin/journaldriver";
license = licenses.gpl3; license = licenses.gpl3;
maintainers = [ maintainers.tazjin ]; maintainers = [ maintainers.tazjin ];
platforms = platforms.linux; platforms = platforms.linux;