Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
115 lines
3.0 KiB
Nix
115 lines
3.0 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
buildGo124Module,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
installShellFiles,
|
|
}:
|
|
|
|
let
|
|
generic =
|
|
{
|
|
buildGoModule,
|
|
version,
|
|
hash,
|
|
vendorHash,
|
|
license,
|
|
...
|
|
}@attrs:
|
|
let
|
|
attrs' = removeAttrs attrs [
|
|
"buildGoModule"
|
|
"version"
|
|
"hash"
|
|
"vendorHash"
|
|
"license"
|
|
];
|
|
in
|
|
buildGoModule (
|
|
rec {
|
|
pname = "nomad";
|
|
inherit version vendorHash;
|
|
|
|
subPackages = [ "." ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = "nomad";
|
|
rev = "v${version}";
|
|
inherit hash;
|
|
};
|
|
|
|
# Nomad requires Go 1.24.6, but nixpkgs doesn't have it in unstable yet.
|
|
postPatch = ''
|
|
substituteInPlace go.mod \
|
|
--replace-warn "go 1.24.6" "go 1.24.5"
|
|
'';
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
ldflags = [
|
|
"-X github.com/hashicorp/nomad/version.Version=${version}"
|
|
"-X github.com/hashicorp/nomad/version.VersionPrerelease="
|
|
"-X github.com/hashicorp/nomad/version.BuildDate=1970-01-01T00:00:00Z"
|
|
];
|
|
|
|
# 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" ];
|
|
|
|
postInstall = ''
|
|
echo "complete -C $out/bin/nomad nomad" > nomad.bash
|
|
installShellCompletion nomad.bash
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://developer.hashicorp.com/nomad";
|
|
description = "Distributed, Highly Available, Datacenter-Aware Scheduler";
|
|
mainProgram = "nomad";
|
|
inherit license;
|
|
maintainers = with maintainers; [
|
|
rushmorem
|
|
techknowlogick
|
|
cottand
|
|
];
|
|
};
|
|
}
|
|
// attrs'
|
|
);
|
|
in
|
|
rec {
|
|
# Nomad never updates major go versions within a release series and is unsupported
|
|
# on Go versions that it did not ship with. Due to historic bugs when compiled
|
|
# with different versions we pin Go for all versions.
|
|
# Upstream partially documents used Go versions here
|
|
# https://github.com/hashicorp/nomad/blob/master/contributing/golang.md
|
|
|
|
nomad = nomad_1_10;
|
|
|
|
nomad_1_10 = generic {
|
|
buildGoModule = buildGo124Module;
|
|
version = "1.10.5";
|
|
hash = "sha256-NFH++oYWb6vQN6cOPByscI/ZBWDNy4YbcLiBMO3/jVU=";
|
|
vendorHash = "sha256-QcTw9kKwoHIvXZoxfDohFG+sBs8OLvYPeygygDClsn8=";
|
|
license = lib.licenses.bsl11;
|
|
passthru.tests.nomad = nixosTests.nomad;
|
|
preCheck = ''
|
|
export PATH="$PATH:$NIX_BUILD_TOP/go/bin"
|
|
'';
|
|
};
|
|
|
|
nomad_1_9 = generic {
|
|
buildGoModule = buildGo124Module;
|
|
version = "1.9.7";
|
|
hash = "sha256-U02H6DPr1friQ9EwqD/wQnE2Fm20OE5xNccPDJfnsqI=";
|
|
vendorHash = "sha256-9GnwqkexJAxrhW9yJFaDTdSaZ+p+/dcMuhlusp4cmyw=";
|
|
license = lib.licenses.bsl11;
|
|
passthru.tests.nomad = nixosTests.nomad;
|
|
preCheck = ''
|
|
export PATH="$PATH:$NIX_BUILD_TOP/go/bin"
|
|
'';
|
|
};
|
|
}
|