nixpkgs/pkgs/applications/networking/cluster/nomad/generic.nix

59 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-03 19:26:14 +00:00
{ lib
, buildGoPackage
, fetchFromGitHub
, version
, sha256
, nvidiaGpuSupport
, patchelf
, nvidia_x11
}:
2016-06-09 09:25:27 +00:00
buildGoPackage rec {
pname = "nomad";
inherit version;
2016-06-09 09:25:27 +00:00
rev = "v${version}";
goPackagePath = "github.com/hashicorp/nomad";
subPackages = [ "." ];
src = fetchFromGitHub {
owner = "hashicorp";
repo = pname;
inherit rev sha256;
2016-06-09 09:25:27 +00:00
};
2021-01-03 19:26:14 +00:00
nativeBuildInputs = lib.optionals nvidiaGpuSupport [
patchelf
];
# 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 19:26:14 +00: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
'';
2021-01-03 19:26:14 +00:00
meta = with lib; {
homepage = "https://www.nomadproject.io/";
2016-06-09 09:25:27 +00:00
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
platforms = platforms.unix;
2016-06-30 18:22:35 +00:00
license = licenses.mpl20;
2019-10-22 17:37:39 +00:00
maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes ];
2016-06-09 09:25:27 +00:00
};
}