summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2022-03-08 22:38:00 +0100
committerGitHub <noreply@github.com>2022-03-08 22:38:00 +0100
commit38360c933d83c6135d27d5bb4d6aeb5e83d71047 (patch)
tree7308cecec989608d12c6319acce7d50b4b6e095b /pkgs/tools/filesystems
parent6d5e1805e168345d22c29a2934dc2ba0076bcfbb (diff)
parent47b93c97a277c7f65310e540bf5716c0063d2a5f (diff)
downloadnixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.tar
nixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.tar.gz
nixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.tar.bz2
nixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.tar.lz
nixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.tar.xz
nixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.tar.zst
nixpkgs-38360c933d83c6135d27d5bb4d6aeb5e83d71047.zip
Merge pull request #162945 from r-ryantm/auto-update/garage
garage: 0.6.0 -> 0.6.1
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/garage/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/filesystems/garage/default.nix b/pkgs/tools/filesystems/garage/default.nix
index fbeac15a38e..9b96f1c0a8e 100644
--- a/pkgs/tools/filesystems/garage/default.nix
+++ b/pkgs/tools/filesystems/garage/default.nix
@@ -1,17 +1,17 @@
 { lib, rustPlatform, fetchFromGitea, testVersion, garage }:
 rustPlatform.buildRustPackage rec {
   pname = "garage";
-  version = "0.6.0";
+  version = "0.6.1";
 
   src = fetchFromGitea {
     domain = "git.deuxfleurs.fr";
     owner = "Deuxfleurs";
     repo = "garage";
     rev = "v${version}";
-    sha256 = "sha256-NNjqDOkMMRyXce+Z7RQpuffCuVhA1U3qH30rSv939ks=";
+    sha256 = "sha256-BEFxPU4yPtctN7H+EcxJpXnf4tyqBseskls0ZA9748k=";
   };
 
-  cargoSha256 = "sha256-eKJxRcC43D8qVLORer34tlmsWhELTbcJbZLyf0MB618=";
+  cargoSha256 = "sha256-/mOH7VOfIHEydnJUUSts44aGb8tS1/Faxiu4pQDeobY=";
 
   passthru = {
     tests.version = testVersion { package = garage; };