2021-01-03 20:26:14 +01:00
|
|
|
{ lib
|
|
|
|
, buildGoPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, version
|
|
|
|
, sha256
|
|
|
|
, nvidiaGpuSupport
|
|
|
|
, patchelf
|
|
|
|
, nvidia_x11
|
|
|
|
}:
|
2016-06-09 11:25:27 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "nomad";
|
2020-08-12 21:46:32 +02:00
|
|
|
inherit version;
|
2016-06-09 11:25:27 +02:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/hashicorp/nomad";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
2019-08-31 10:45:48 +02:00
|
|
|
repo = pname;
|
2020-08-12 21:46:32 +02:00
|
|
|
inherit rev sha256;
|
2016-06-09 11:25:27 +02:00
|
|
|
};
|
|
|
|
|
2021-01-03 20:26:14 +01:00
|
|
|
nativeBuildInputs = lib.optionals nvidiaGpuSupport [
|
|
|
|
patchelf
|
|
|
|
];
|
|
|
|
|
2019-08-31 10:45:48 +02:00
|
|
|
# ui:
|
|
|
|
# Nomad release commits include the compiled version of the UI, but the file
|
|
|
|
# is only included if we build with the ui tag.
|
2021-01-03 20:26:14 +01:00
|
|
|
preBuild =
|
|
|
|
let
|
|
|
|
tags = [ "ui" ] ++ lib.optional (!nvidiaGpuSupport) "nonvidia";
|
|
|
|
tagsString = lib.concatStringsSep " " tags;
|
|
|
|
in
|
|
|
|
''
|
|
|
|
export buildFlagsArray=(
|
|
|
|
-tags="${tagsString}"
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
|
|
|
|
# The dependency on NVML isn't explicit. We have to make it so otherwise the
|
|
|
|
# binary will not know where to look for the relevant symbols.
|
|
|
|
postFixup = lib.optionalString nvidiaGpuSupport ''
|
|
|
|
for bin in $out/bin/*; do
|
|
|
|
patchelf --add-needed "${nvidia_x11}/lib/libnvidia-ml.so" "$bin"
|
|
|
|
done
|
|
|
|
'';
|
2019-07-01 22:02:25 +02:00
|
|
|
|
2021-01-03 20:26:14 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://www.nomadproject.io/";
|
2016-06-09 11:25:27 +02:00
|
|
|
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
|
2019-02-17 14:00:33 +01:00
|
|
|
platforms = platforms.unix;
|
2016-06-30 20:22:35 +02:00
|
|
|
license = licenses.mpl20;
|
2019-10-22 19:37:39 +02:00
|
|
|
maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes ];
|
2016-06-09 11:25:27 +02:00
|
|
|
};
|
|
|
|
}
|