From bb25fce9ae14fcfe251c43e58671b3677c5bc3e2 Mon Sep 17 00:00:00 2001 From: Maxine Aubrey Date: Wed, 19 May 2021 17:00:24 +0200 Subject: [PATCH 1/2] nomad_1_0: 1.0.5 -> 1.0.6 --- pkgs/applications/networking/cluster/nomad/1.0.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/nomad/1.0.nix b/pkgs/applications/networking/cluster/nomad/1.0.nix index f4551d1e823c..9e7341e55bf1 100644 --- a/pkgs/applications/networking/cluster/nomad/1.0.nix +++ b/pkgs/applications/networking/cluster/nomad/1.0.nix @@ -6,6 +6,6 @@ callPackage ./generic.nix { inherit buildGoPackage nvidia_x11 nvidiaGpuSupport; - version = "1.0.5"; - sha256 = "06l56fi4fhplvl8v0i88q18yh1hwwd12fngnrflb91janbyk6p4l"; + version = "1.0.6"; + sha256 = "1nzaw4014bndxv042dkxdj492b21r5v5f06vav2kr1azk4m9sf07"; } From 700ee75d22749643fa4fe4ac38704c92f52a9156 Mon Sep 17 00:00:00 2001 From: Maxine Aubrey Date: Wed, 19 May 2021 17:00:38 +0200 Subject: [PATCH 2/2] nomad_1_1: init at 1.1.0 --- pkgs/applications/networking/cluster/nomad/1.1.nix | 11 +++++++++++ pkgs/top-level/all-packages.nix | 5 +++++ 2 files changed, 16 insertions(+) create mode 100644 pkgs/applications/networking/cluster/nomad/1.1.nix diff --git a/pkgs/applications/networking/cluster/nomad/1.1.nix b/pkgs/applications/networking/cluster/nomad/1.1.nix new file mode 100644 index 000000000000..9e2966856eb7 --- /dev/null +++ b/pkgs/applications/networking/cluster/nomad/1.1.nix @@ -0,0 +1,11 @@ +{ callPackage +, buildGoPackage +, nvidia_x11 +, nvidiaGpuSupport +}: + +callPackage ./generic.nix { + inherit buildGoPackage nvidia_x11 nvidiaGpuSupport; + version = "1.1.0"; + sha256 = "0sz6blyxyxi5iq170s9v4nndb1hpz603z5ps2cxkdkaafal39767"; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a1f9240d59c1..4fb4fe887f5c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7050,6 +7050,11 @@ in inherit (linuxPackages) nvidia_x11; nvidiaGpuSupport = config.cudaSupport or false; }; + nomad_1_1 = callPackage ../applications/networking/cluster/nomad/1.1.nix { + buildGoPackage = buildGo116Package; + inherit (linuxPackages) nvidia_x11; + nvidiaGpuSupport = config.cudaSupport or false; + }; nomad-driver-podman = callPackage ../applications/networking/cluster/nomad-driver-podman { };