about summary refs log tree commit diff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authoremilylange <git@emilylange.de>2023-11-20 00:34:02 +0100
committeremilylange <git@emilylange.de>2023-11-20 00:34:02 +0100
commit0a58ab81c2a54e587ba9eee30215cdf9606f91aa (patch)
tree9185b5413a8b041a9fe4824035084c7f1cd36024 /pkgs/tools/backup
parent1f9a04da3ff917a1ece57ae702637690adab18a8 (diff)
rustic-rs: 0.5.4 -> 0.6.1
Release 0.6.0 had to be skipped due to an inconsistent Cargo.lock file.

The changelog has been moved and restructured between 0.5.4 and 0.6.0.

https://github.com/rustic-rs/rustic/releases/tag/v0.6.1
https://github.com/rustic-rs/rustic/releases/tag/v0.6.0

diff: https://github.com/rustic-rs/rustic/compare/v0.6.0...v0.6.1
diff: https://github.com/rustic-rs/rustic/compare/v0.5.4...v0.6.0

changelog: https://github.com/rustic-rs/rustic/blob/v0.6.1/CHANGELOG.md
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/rustic-rs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/backup/rustic-rs/default.nix b/pkgs/tools/backup/rustic-rs/default.nix
index 27b7c3541933f..7b47ba39ec0f8 100644
--- a/pkgs/tools/backup/rustic-rs/default.nix
+++ b/pkgs/tools/backup/rustic-rs/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "rustic-rs";
-  version = "0.5.4";
+  version = "0.6.1";
 
   src = fetchFromGitHub {
     owner = "rustic-rs";
     repo = "rustic";
     rev = "refs/tags/v${version}";
-    hash = "sha256-LAOU2cnKb+TEWNiXJkpgqNxuU16g/Kc3swGIUc8t9x0=";
+    hash = "sha256-rpIEgQYwfManfgTrhCt6/Q4VBY2yyn4edC6/mz5D7nM=";
   };
 
-  cargoHash = "sha256-OTIdl2x5m90rEwNBu3LL3rFQ0FVS3GDYU7gf8P7CTaQ=";
+  cargoHash = "sha256-q+K887jPB9i9iXpFYXjn3zppAPWNlTc2AG7ivOr77J4=";
 
   nativeBuildInputs = [ installShellFiles ];
 
@@ -29,7 +29,7 @@ rustPlatform.buildRustPackage rec {
 
   meta = {
     homepage = "https://github.com/rustic-rs/rustic";
-    changelog = "https://github.com/rustic-rs/rustic/blob/${src.rev}/changelog/${version}.txt";
+    changelog = "https://github.com/rustic-rs/rustic/blob/${src.rev}/changelog/CHANGELOG.md";
     description = "fast, encrypted, deduplicated backups powered by pure Rust";
     mainProgram = "rustic";
     platforms = lib.platforms.linux ++ lib.platforms.darwin;