nomad: 0.8.7 -> 0.9.3 (#63854)

0.9 series require go 1.11.11+ so switching to default 1.12.
This commit is contained in:
Nikola Knežević 2019-07-01 22:02:25 +02:00 committed by Danylo Hlynskyi
parent e64341c759
commit 5366173614
2 changed files with 7 additions and 5 deletions

View file

@ -2,7 +2,7 @@
buildGoPackage rec {
name = "nomad-${version}";
version = "0.8.7";
version = "0.9.3";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/nomad";
@ -12,9 +12,13 @@ buildGoPackage rec {
owner = "hashicorp";
repo = "nomad";
inherit rev;
sha256 = "0nkqiqkrccfmn7qkbhd48m9m56ix4xb0a3ar0z0pl4sbm25rlj0b";
sha256 = "0hn9rr5v2y2pw0pmn27gz8dx5n964dsaf48sh0jhwc95b5q1rjwr";
};
# We disable Nvidia GPU scheduling on Linux, as it doesn't work there:
# Ref: https://github.com/hashicorp/nomad/issues/5535
buildFlags = stdenv.lib.optionalString (stdenv.isLinux) "-tags nonvidia";
meta = with stdenv.lib; {
homepage = https://www.nomadproject.io/;
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";

View file

@ -4841,9 +4841,7 @@ in
noip = callPackage ../tools/networking/noip { };
nomad = callPackage ../applications/networking/cluster/nomad {
buildGoPackage = buildGo110Package;
};
nomad = callPackage ../applications/networking/cluster/nomad { };
notable = callPackage ../applications/misc/notable { };