garage: 0.6.1 -> 0.7.0
This commit is contained in:
parent
49cc8715be
commit
46093e942f
1 changed files with 6 additions and 4 deletions
|
@ -1,17 +1,19 @@
|
||||||
{ lib, rustPlatform, fetchFromGitea, testVersion, garage }:
|
{ lib, rustPlatform, fetchFromGitea, protobuf, testVersion, garage }:
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "garage";
|
pname = "garage";
|
||||||
version = "0.6.1";
|
version = "0.7.0";
|
||||||
|
|
||||||
src = fetchFromGitea {
|
src = fetchFromGitea {
|
||||||
domain = "git.deuxfleurs.fr";
|
domain = "git.deuxfleurs.fr";
|
||||||
owner = "Deuxfleurs";
|
owner = "Deuxfleurs";
|
||||||
repo = "garage";
|
repo = "garage";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-BEFxPU4yPtctN7H+EcxJpXnf4tyqBseskls0ZA9748k=";
|
sha256 = "sha256-gs0TW431YUrdsdJ+PYrJgnLiBmDPYnUR0iVnQ/YqIfU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-/mOH7VOfIHEydnJUUSts44aGb8tS1/Faxiu4pQDeobY=";
|
cargoSha256 = "sha256-XGSenT2q3VXNcIT1Lg1e5HTOkEdOb1o3H07ahteQM/o=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ protobuf ];
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
tests.version = testVersion { package = garage; };
|
tests.version = testVersion { package = garage; };
|
||||||
|
|
Loading…
Reference in a new issue