about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <github@tazj.in>2018-10-09 23:45:43 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-10-09 23:45:43 +0200
commit5ead27394d6adf7ea41497768ada6faee1bf1f88 (patch)
tree5d827568805c8ae87cca5056513e86cf35c08a5f
parentdd58c35332eaabf5f48613f6bc34fbbbb189cfa0 (diff)
downloadnixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar
nixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.gz
nixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.bz2
nixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.lz
nixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.xz
nixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.zst
nixlib-5ead27394d6adf7ea41497768ada6faee1bf1f88.zip
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.
-rw-r--r--nixos/modules/services/logging/journaldriver.nix2
-rw-r--r--pkgs/tools/misc/journaldriver/default.nix10
2 files changed, 6 insertions, 6 deletions
diff --git a/nixos/modules/services/logging/journaldriver.nix b/nixos/modules/services/logging/journaldriver.nix
index 74ac3d4c2365..9bd581e9ec0e 100644
--- a/nixos/modules/services/logging/journaldriver.nix
+++ b/nixos/modules/services/logging/journaldriver.nix
@@ -7,7 +7,7 @@
 # to be set.
 #
 # 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, ...}:
 
diff --git a/pkgs/tools/misc/journaldriver/default.nix b/pkgs/tools/misc/journaldriver/default.nix
index 58c9ee770b7f..e97f4048f0ff 100644
--- a/pkgs/tools/misc/journaldriver/default.nix
+++ b/pkgs/tools/misc/journaldriver/default.nix
@@ -2,14 +2,14 @@
 
 rustPlatform.buildRustPackage rec {
   name        = "journaldriver-${version}";
-  version     = "1.0.0";
-  cargoSha256 = "04llhriwsrjqnkbjgd22nhci6zmhadclnd8r2bw5092gwdamf49k";
+  version     = "1.1.0";
+  cargoSha256 = "03rq96hzv97wh2gbzi8sz796bqgh6pbpvdn0zy6zgq2f2sgkavsl";
 
   src = fetchFromGitHub {
-    owner  = "aprilabank";
+    owner  = "tazjin";
     repo   = "journaldriver";
     rev    = "v${version}";
-    sha256 = "1163ghf7dxxchyawdaa7zdi8ly2pxmc005c2k549larbirjjbmgc";
+    sha256 = "0672iq6s9klb1p37hciyl7snbjgjw98kwrbfkypv07lplc5qcnrf";
   };
 
   buildInputs       = [ openssl systemd ];
@@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
 
   meta = with lib; {
     description = "Log forwarder from journald to Stackdriver Logging";
-    homepage    = "https://github.com/aprilabank/journaldriver";
+    homepage    = "https://github.com/tazjin/journaldriver";
     license     = licenses.gpl3;
     maintainers = [ maintainers.tazjin ];
     platforms   = platforms.linux;