lol

Merge pull request #153533 from techknowlogick/update-nomad

nomad: 1.1.8 -> 1.2.3

authored by

Bernardo Meurer and committed by
GitHub
f7fba6ae 5d3c9dde

+19 -2
+12
pkgs/applications/networking/cluster/nomad/1.2.nix
··· 1 + { callPackage 2 + , buildGoModule 3 + , nvidia_x11 4 + , nvidiaGpuSupport 5 + }: 6 + 7 + callPackage ./genericModule.nix { 8 + inherit buildGoModule nvidia_x11 nvidiaGpuSupport; 9 + version = "1.2.3"; 10 + sha256 = "0qjj1pnq2yv4r8dv03m08ii4118drjnswf4n1r95dqh8j3bymv5i"; 11 + vendorSha256 = "0djh2184yg4b656wbhzxg1q1hsdnbrwsk79vc0426d0mqbzyy7dx"; 12 + }
+1 -1
pkgs/applications/networking/cluster/nomad/generic.nix
··· 44 44 description = "A Distributed, Highly Available, Datacenter-Aware Scheduler"; 45 45 platforms = platforms.unix; 46 46 license = licenses.mpl20; 47 - maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey ]; 47 + maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey techknowlogick ]; 48 48 }; 49 49 }
+6 -1
pkgs/top-level/all-packages.nix
··· 8074 8074 8075 8075 noip = callPackage ../tools/networking/noip { }; 8076 8076 8077 - nomad = nomad_1_1; 8077 + nomad = nomad_1_2; 8078 8078 8079 8079 # Nomad never updates major go versions within a release series and is unsupported 8080 8080 # on Go versions that it did not ship with. Due to historic bugs when compiled ··· 8088 8088 }; 8089 8089 nomad_1_1 = callPackage ../applications/networking/cluster/nomad/1.1.nix { 8090 8090 buildGoModule = buildGo116Module; 8091 + inherit (linuxPackages) nvidia_x11; 8092 + nvidiaGpuSupport = config.cudaSupport or false; 8093 + }; 8094 + nomad_1_2 = callPackage ../applications/networking/cluster/nomad/1.2.nix { 8095 + buildGoModule = buildGo117Module; 8091 8096 inherit (linuxPackages) nvidia_x11; 8092 8097 nvidiaGpuSupport = config.cudaSupport or false; 8093 8098 };