From 53518d5d5e691700de3a0b6e944f0957549c0270 Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 5 Oct 2022 23:28:20 -0400 Subject: [PATCH 1/3] nomad_1_2: 1.2.12 -> 1.2.13 --- pkgs/applications/networking/cluster/nomad/1.2.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/nomad/1.2.nix b/pkgs/applications/networking/cluster/nomad/1.2.nix index 901f464c38f4..23d71704a04b 100644 --- a/pkgs/applications/networking/cluster/nomad/1.2.nix +++ b/pkgs/applications/networking/cluster/nomad/1.2.nix @@ -4,7 +4,7 @@ callPackage ./generic.nix { inherit buildGoModule; - version = "1.2.12"; - sha256 = "sha256-PdMo96/foN7rSNvMOQ16N3advy+h0GX7LYtfl23xRfs="; - vendorSha256 = "sha256-fmqhaM3yK2ThiD+qwQTr+d5FqhZWzkwcGTSPdXNNFTU="; + version = "1.2.13"; + sha256 = "sha256-yDcvN6cKG1BlBq1ygYB58bS1YRHWqJgLXRlqI7lrW1A="; + vendorSha256 = "sha256-dPErDlJ4oNpER3Ij4yrN77V8sZvDUuXY7dM39u9xT4I="; } From 19b7aae97774ff4161c806447eba84bb67ea44ce Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 5 Oct 2022 23:28:50 -0400 Subject: [PATCH 2/3] nomad_1_3: 1.3.5 -> 1.3.6 --- pkgs/applications/networking/cluster/nomad/1.3.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/nomad/1.3.nix b/pkgs/applications/networking/cluster/nomad/1.3.nix index 0d33c5efd087..eb3d81064213 100644 --- a/pkgs/applications/networking/cluster/nomad/1.3.nix +++ b/pkgs/applications/networking/cluster/nomad/1.3.nix @@ -4,7 +4,7 @@ callPackage ./generic.nix { inherit buildGoModule; - version = "1.3.5"; - sha256 = "sha256-WKS7EfZxysy/oyq1fa8rKvmfgHRiB7adSVhALZNFYgo="; - vendorSha256 = "sha256-byc6wAxpqhxlN3kyHyFQeBS9/oIjHeoz6ldYskizgaI="; + version = "1.3.6"; + sha256 = "sha256-E1+QFaakAsqeXxAfY80ExWVIud7Q/q2TaUVsmADjsgo="; + vendorSha256 = "sha256-kgTRjPr7GsoBeE/s9wrmUWE5jv1ZmszfVDsVaRbdx14="; } From 801293d6ea297635cccf91441169587245d28a5c Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 5 Oct 2022 23:29:24 -0400 Subject: [PATCH 3/3] nomad_1_4: init at 1.4.0 --- pkgs/applications/networking/cluster/nomad/1.4.nix | 10 ++++++++++ pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 pkgs/applications/networking/cluster/nomad/1.4.nix diff --git a/pkgs/applications/networking/cluster/nomad/1.4.nix b/pkgs/applications/networking/cluster/nomad/1.4.nix new file mode 100644 index 000000000000..d94352ffba4b --- /dev/null +++ b/pkgs/applications/networking/cluster/nomad/1.4.nix @@ -0,0 +1,10 @@ +{ callPackage +, buildGoModule +}: + +callPackage ./generic.nix { + inherit buildGoModule; + version = "1.4.0"; + sha256 = "sha256-iAAnXhJdfgBsuBsuIkFQB4AbTplX3HJuf5HfUGAUEeM="; + vendorSha256 = "sha256-kfT2UGC8Wl7CM9lOU75UqKc0/O1okGCoGDpmQntakbU="; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0da2d62627be..50154069247f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9400,6 +9400,9 @@ with pkgs; nomad_1_3 = callPackage ../applications/networking/cluster/nomad/1.3.nix { buildGoModule = buildGo119Module; }; + nomad_1_4 = callPackage ../applications/networking/cluster/nomad/1.4.nix { + buildGoModule = buildGo119Module; + }; nomad-autoscaler = callPackage ../applications/networking/cluster/nomad-autoscaler { };