nomad_1_4: 1.4.3 -> 1.4.4

https://github.com/hashicorp/nomad/releases/tag/v1.4.4
This commit is contained in:
zowoq 2023-02-16 07:52:20 +10:00
parent 5618484d80
commit 270de46da6

View File

@ -1,6 +1,5 @@
{ lib
, buildGoModule
, buildGo119Module
, buildGo120Module
, fetchFromGitHub
, nixosTests
@ -62,10 +61,10 @@ rec {
};
nomad_1_4 = generic {
buildGoModule = buildGo119Module;
version = "1.4.3";
sha256 = "sha256-GQVfrn9VlzfdIj73W3hBpHcevsXZcb6Uj808HUCZUUg=";
vendorSha256 = "sha256-JQRpsQhq5r/QcgFwtnptmvnjBEhdCFrXFrTKkJioL3A=";
buildGoModule = buildGo120Module;
version = "1.4.4";
sha256 = "sha256-mAimuWolTJ3lMY/ArnLZFu+GZv9ADdGsriXsTcEgdYc=";
vendorSha256 = "sha256-QtP7pzsIBd2S79AUcbOeVG71Mb5qK706rq5DkT41VqM=";
passthru.tests.nomad = nixosTests.nomad;
};
}