From 46093e942f8b7189d24e61495e43c47aff2ede71 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Sun, 10 Apr 2022 18:05:20 +0800 Subject: [PATCH] garage: 0.6.1 -> 0.7.0 --- pkgs/tools/filesystems/garage/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/filesystems/garage/default.nix b/pkgs/tools/filesystems/garage/default.nix index 9b96f1c0a8e5..9d9f2535a04f 100644 --- a/pkgs/tools/filesystems/garage/default.nix +++ b/pkgs/tools/filesystems/garage/default.nix @@ -1,17 +1,19 @@ -{ lib, rustPlatform, fetchFromGitea, testVersion, garage }: +{ lib, rustPlatform, fetchFromGitea, protobuf, testVersion, garage }: rustPlatform.buildRustPackage rec { pname = "garage"; - version = "0.6.1"; + version = "0.7.0"; src = fetchFromGitea { domain = "git.deuxfleurs.fr"; owner = "Deuxfleurs"; repo = "garage"; rev = "v${version}"; - sha256 = "sha256-BEFxPU4yPtctN7H+EcxJpXnf4tyqBseskls0ZA9748k="; + sha256 = "sha256-gs0TW431YUrdsdJ+PYrJgnLiBmDPYnUR0iVnQ/YqIfU="; }; - cargoSha256 = "sha256-/mOH7VOfIHEydnJUUSts44aGb8tS1/Faxiu4pQDeobY="; + cargoSha256 = "sha256-XGSenT2q3VXNcIT1Lg1e5HTOkEdOb1o3H07ahteQM/o="; + + nativeBuildInputs = [ protobuf ]; passthru = { tests.version = testVersion { package = garage; };