nomad: 0.9.5 -> 0.10.0

This commit upgrades Nomad from 0.9.5 to 0.10.0 and also pins the Golang
version to go1.12 as it is the only supported compiler for the current
release, and due to some dependency issues currently does not support
go1.13.
This commit is contained in:
Danielle Lancashire 2019-10-22 19:36:12 +02:00 committed by Jon
parent a701093bd4
commit 942eb66bf4
2 changed files with 5 additions and 3 deletions

View File

@ -2,7 +2,7 @@
buildGoPackage rec {
pname = "nomad";
version = "0.9.5";
version = "0.10.0";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/nomad";
@ -12,7 +12,7 @@ buildGoPackage rec {
owner = "hashicorp";
repo = pname;
inherit rev;
sha256 = "01491470idb11z0ab4anb5caw46vy9s94a17l92j0z2f3f4k6xfl";
sha256 = "1hvnrbna4hsyp5byx5si2gn4h3m6shwmd8nk0vpbrs3ck3dl1p6l";
};
# ui:

View File

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