garage: 0.6.1 -> 0.7.0

This commit is contained in:
Nick Cao 2022-04-10 18:05:20 +08:00
parent 49cc8715be
commit 46093e942f
No known key found for this signature in database
GPG Key ID: 068A56CEF48FA2C1

View File

@ -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; };