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.

Changed files
+6 -6
nixos
modules
services
pkgs
tools
misc
journaldriver
+1 -1
nixos/modules/services/logging/journaldriver.nix
···
# to be set.
#
# For further information please consult the documentation in the
-
# upstream repository at: https://github.com/aprilabank/journaldriver/
{ config, lib, pkgs, ...}:
···
# to be set.
#
# For further information please consult the documentation in the
+
# upstream repository at: https://github.com/tazjin/journaldriver/
{ config, lib, pkgs, ...}:
+5 -5
pkgs/tools/misc/journaldriver/default.nix
···
rustPlatform.buildRustPackage rec {
name = "journaldriver-${version}";
-
version = "1.0.0";
-
cargoSha256 = "04llhriwsrjqnkbjgd22nhci6zmhadclnd8r2bw5092gwdamf49k";
src = fetchFromGitHub {
-
owner = "aprilabank";
repo = "journaldriver";
rev = "v${version}";
-
sha256 = "1163ghf7dxxchyawdaa7zdi8ly2pxmc005c2k549larbirjjbmgc";
};
buildInputs = [ openssl systemd ];
···
meta = with lib; {
description = "Log forwarder from journald to Stackdriver Logging";
-
homepage = "https://github.com/aprilabank/journaldriver";
license = licenses.gpl3;
maintainers = [ maintainers.tazjin ];
platforms = platforms.linux;
···
rustPlatform.buildRustPackage rec {
name = "journaldriver-${version}";
+
version = "1.1.0";
+
cargoSha256 = "03rq96hzv97wh2gbzi8sz796bqgh6pbpvdn0zy6zgq2f2sgkavsl";
src = fetchFromGitHub {
+
owner = "tazjin";
repo = "journaldriver";
rev = "v${version}";
+
sha256 = "0672iq6s9klb1p37hciyl7snbjgjw98kwrbfkypv07lplc5qcnrf";
};
buildInputs = [ openssl systemd ];
···
meta = with lib; {
description = "Log forwarder from journald to Stackdriver Logging";
+
homepage = "https://github.com/tazjin/journaldriver";
license = licenses.gpl3;
maintainers = [ maintainers.tazjin ];
platforms = platforms.linux;