mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, version
|
|
, sha256
|
|
, vendorSha256
|
|
, nvidiaGpuSupport
|
|
, patchelf
|
|
, nvidia_x11
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nomad";
|
|
inherit version;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
inherit sha256;
|
|
};
|
|
|
|
inherit vendorSha256;
|
|
|
|
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.
|
|
tags = [ "ui" ] ++ lib.optional (!nvidiaGpuSupport) "nonvidia";
|
|
|
|
# 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
|
|
'';
|
|
|
|
passthru.tests.nomad = nixosTests.nomad;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.nomadproject.io/";
|
|
description = "A Distributed, Highly Available, Datacenter-Aware Scheduler";
|
|
platforms = platforms.unix;
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ rushmorem pradeepchhetri endocrimes maxeaubrey ];
|
|
};
|
|
}
|