Merge pull request #153533 from techknowlogick/update-nomad

nomad: 1.1.8 -> 1.2.3

Changed files
+19 -2
pkgs
applications
networking
cluster
top-level
+12
pkgs/applications/networking/cluster/nomad/1.2.nix
···
+
{ callPackage
+
, buildGoModule
+
, nvidia_x11
+
, nvidiaGpuSupport
+
}:
+
+
callPackage ./genericModule.nix {
+
inherit buildGoModule nvidia_x11 nvidiaGpuSupport;
+
version = "1.2.3";
+
sha256 = "0qjj1pnq2yv4r8dv03m08ii4118drjnswf4n1r95dqh8j3bymv5i";
+
vendorSha256 = "0djh2184yg4b656wbhzxg1q1hsdnbrwsk79vc0426d0mqbzyy7dx";
+
}
+1 -1
pkgs/applications/networking/cluster/nomad/generic.nix
···
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
platforms = platforms.unix;
license = licenses.mpl20;
-
maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey ];
+
maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey techknowlogick ];
};
}
+6 -1
pkgs/top-level/all-packages.nix
···
noip = callPackage ../tools/networking/noip { };
-
nomad = nomad_1_1;
+
nomad = nomad_1_2;
# Nomad never updates major go versions within a release series and is unsupported
# on Go versions that it did not ship with. Due to historic bugs when compiled
···
};
nomad_1_1 = callPackage ../applications/networking/cluster/nomad/1.1.nix {
buildGoModule = buildGo116Module;
+
inherit (linuxPackages) nvidia_x11;
+
nvidiaGpuSupport = config.cudaSupport or false;
+
};
+
nomad_1_2 = callPackage ../applications/networking/cluster/nomad/1.2.nix {
+
buildGoModule = buildGo117Module;
inherit (linuxPackages) nvidia_x11;
nvidiaGpuSupport = config.cudaSupport or false;
};