1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/nomad/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

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