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
33 lines
779 B
Nix
33 lines
779 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "hashi-ui";
|
|
version = "1.3.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/jippi/hashi-ui/releases/download/v${version}/hashi-ui-linux-amd64";
|
|
sha256 = "999a34b6e99657ffc7e6c98a15b8ea744c28420e891a8802c7d99b737752dfb6";
|
|
};
|
|
|
|
dontUnpack = true;
|
|
sourceRoot = ".";
|
|
|
|
installPhase = ''
|
|
install -m755 -D $src $out/bin/hashi-ui
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jippi/hashi-ui";
|
|
description = "Modern user interface for hashicorp Consul & Nomad";
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ numkem ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.mit;
|
|
mainProgram = "hashi-ui";
|
|
};
|
|
}
|