2021-01-03 19:26:14 +00:00
|
|
|
{ lib
|
2022-01-14 21:15:35 +00:00
|
|
|
, buildGoModule
|
2021-01-03 19:26:14 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
, version
|
|
|
|
, sha256
|
2022-01-14 21:15:35 +00:00
|
|
|
, vendorSha256
|
2021-01-03 19:26:14 +00:00
|
|
|
, nvidiaGpuSupport
|
|
|
|
, patchelf
|
|
|
|
, nvidia_x11
|
2022-01-14 21:15:35 +00:00
|
|
|
, nixosTests
|
2021-01-03 19:26:14 +00:00
|
|
|
}:
|
2016-06-09 09:25:27 +00:00
|
|
|
|
2022-01-14 21:15:35 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "nomad";
|
2020-08-12 19:46:32 +00:00
|
|
|
inherit version;
|
2016-06-09 09:25:27 +00:00
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hashicorp";
|
2019-08-31 08:45:48 +00:00
|
|
|
repo = pname;
|
2022-01-14 21:15:35 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
inherit sha256;
|
2016-06-09 09:25:27 +00:00
|
|
|
};
|
|
|
|
|
2022-01-14 21:15:35 +00:00
|
|
|
inherit vendorSha256;
|
|
|
|
|
2021-01-03 19:26:14 +00:00
|
|
|
nativeBuildInputs = lib.optionals nvidiaGpuSupport [
|
|
|
|
patchelf
|
|
|
|
];
|
|
|
|
|
2019-08-31 08:45:48 +00: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-08-06 00:58:02 +00:00
|
|
|
tags = [ "ui" ] ++ lib.optional (!nvidiaGpuSupport) "nonvidia";
|
2021-01-03 19:26:14 +00:00
|
|
|
|
|
|
|
# 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 20:02:25 +00:00
|
|
|
|
2022-01-14 21:15:35 +00:00
|
|
|
passthru.tests.nomad = nixosTests.nomad;
|
|
|
|
|
2021-01-03 19:26:14 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.nomadproject.io/";
|
2016-06-09 09:25:27 +00:00
|
|
|
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
|
2019-02-17 13:00:33 +00:00
|
|
|
platforms = platforms.unix;
|
2016-06-30 18:22:35 +00:00
|
|
|
license = licenses.mpl20;
|
2022-01-05 01:07:41 +00:00
|
|
|
maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey techknowlogick ];
|
2016-06-09 09:25:27 +00:00
|
|
|
};
|
|
|
|
}
|