nomad: 0.9.4 -> 0.9.5
This commit updates nomad from 0.9.4 to 0.9.5. It also introduces the 'ui' build tag as it is incredibly useful when working in development and production environments - and the assets are included in release commits.
This commit is contained in:
parent
e0795aa5e8
commit
f6c47d01a4
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "nomad";
|
pname = "nomad";
|
||||||
version = "0.9.4";
|
version = "0.9.5";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
|
|
||||||
goPackagePath = "github.com/hashicorp/nomad";
|
goPackagePath = "github.com/hashicorp/nomad";
|
||||||
@ -10,14 +10,26 @@ buildGoPackage rec {
|
|||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "hashicorp";
|
owner = "hashicorp";
|
||||||
repo = "nomad";
|
repo = pname;
|
||||||
inherit rev;
|
inherit rev;
|
||||||
sha256 = "1jgvnmmrz7ffpm6aamdrvklj94n7b43swk9cycqhlfbnzijianpn";
|
sha256 = "01491470idb11z0ab4anb5caw46vy9s94a17l92j0z2f3f4k6xfl";
|
||||||
};
|
};
|
||||||
|
|
||||||
# We disable Nvidia GPU scheduling on Linux, as it doesn't work there:
|
# ui:
|
||||||
# Ref: https://github.com/hashicorp/nomad/issues/5535
|
# Nomad release commits include the compiled version of the UI, but the file
|
||||||
buildFlags = stdenv.lib.optionalString (stdenv.isLinux) "-tags nonvidia";
|
# is only included if we build with the ui tag.
|
||||||
|
# nonvidia:
|
||||||
|
# We disable Nvidia GPU scheduling on Linux, as it doesn't work there:
|
||||||
|
# Ref: https://github.com/hashicorp/nomad/issues/5535
|
||||||
|
preBuild = let
|
||||||
|
tags = ["ui"]
|
||||||
|
++ stdenv.lib.optional stdenv.isLinux "nonvidia";
|
||||||
|
tagsString = stdenv.lib.concatStringsSep " " tags;
|
||||||
|
in ''
|
||||||
|
export buildFlagsArray=(
|
||||||
|
-tags="${tagsString}"
|
||||||
|
)
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.nomadproject.io/;
|
homepage = https://www.nomadproject.io/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user