nomad_2_0: init at 2.0.0 (#512753)

This commit is contained in:
Arne Keller
2026-07-21 15:48:36 +00:00
committed by GitHub
2 changed files with 15 additions and 1 deletions
@@ -1,7 +1,7 @@
{
lib,
buildGoModule,
buildGo125Module,
buildGo126Module,
fetchFromGitHub,
nixosTests,
installShellFiles,
@@ -82,6 +82,19 @@ rec {
nomad = nomad_1_11;
nomad_2_0 = generic {
buildGoModule = buildGo126Module;
version = "2.0.0";
hash = "sha256-5rCAcOXWQ6g2iK1d5wy/a/DZQC2xwwdpI1SscDX98C8=";
vendorHash = "sha256-3/H7QgVOHtaUs6BOF7ATVgrA0cfNBbm940Axrvq2bKU=";
license = lib.licenses.bsl11;
passthru.tests.nomad = nixosTests.nomad;
preCheck = ''
export PATH="$PATH:$NIX_BUILD_TOP/go/bin"
'';
__structuredAttrs = true;
};
nomad_1_11 = generic {
buildGoModule = buildGo125Module;
version = "1.11.3";
+1
View File
@@ -2589,6 +2589,7 @@ with pkgs;
nomad_1_9
nomad_1_10
nomad_1_11
nomad_2_0
;
nth = with python3Packages; toPythonApplication name-that-hash;