summary refs log tree commit diff
path: root/pkgs/tools/misc/journaldriver/default.nix
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 /pkgs/tools/misc/journaldriver/default.nix
parentdd58c35332eaabf5f48613f6bc34fbbbb189cfa0 (diff)
downloadnixpkgs-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar
nixpkgs-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.gz
nixpkgs-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.bz2
nixpkgs-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.lz
nixpkgs-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.xz
nixpkgs-5ead27394d6adf7ea41497768ada6faee1bf1f88.tar.zst
nixpkgs-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.
Diffstat (limited to 'pkgs/tools/misc/journaldriver/default.nix')
-rw-r--r--pkgs/tools/misc/journaldriver/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/journaldriver/default.nix b/pkgs/tools/misc/journaldriver/default.nix
index 58c9ee770b7..e97f4048f0f 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;