mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
39 lines
934 B
Nix
39 lines
934 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "nomad-pack";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hashicorp";
|
|
repo = "nomad-pack";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-dw6sueC1qibJYc6sbZX8HJlEf9R6O8dlE1aobw70UHw=";
|
|
};
|
|
|
|
vendorHash = "sha256-BKYJ9FZXKpFwK3+mrZAXRkfitSY9jeOLLeC0BOsKc/A=";
|
|
|
|
# skip running go tests as they require network access
|
|
doCheck = false;
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
$out/bin/nomad-pack --version
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hashicorp/nomad-pack";
|
|
changelog = "https://github.com/hashicorp/nomad-pack/blob/main/CHANGELOG.md";
|
|
description = "Nomad Pack is a templating and packaging tool used with HashiCorp Nomad";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ techknowlogick ];
|
|
};
|
|
|
|
}
|