nixpkgs/pkgs/applications/networking/cluster/nomad-pack/default.nix
2024-04-24 18:08:26 +02:00

38 lines
923 B
Nix

{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "nomad-pack";
version = "0.1.0";
src = fetchFromGitHub {
owner = "hashicorp";
repo = pname;
rev = "v${version}";
sha256 = "sha256-4v5CAJkpeIZ64w5LDcK9Jn8qDqIXrtXgVyB3K/PiZQw=";
};
vendorHash = "sha256-kHZWciRZYk1E1NVega0F/ZljyEl1SmXUveb2E7a9j34=";
# 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 ];
};
}