mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
67 lines
2.2 KiB
Nix
67 lines
2.2 KiB
Nix
{ lib, stdenv, fetchzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "octant";
|
|
version = "0.24.0";
|
|
|
|
src =
|
|
let
|
|
inherit (stdenv.hostPlatform) system;
|
|
suffix = {
|
|
x86_64-linux = "Linux-64bit";
|
|
aarch64-linux = "Linux-arm64";
|
|
x86_64-darwin = "macOS-64bit";
|
|
aarch64-darwin = "macOS-arm64";
|
|
}.${system} or (throw "Unsupported system: ${system}");
|
|
fetchsrc = version: sha256: fetchzip {
|
|
url = "https://github.com/vmware-tanzu/octant/releases/download/v${version}/octant_${version}_${suffix}.tar.gz";
|
|
sha256 = sha256.${system};
|
|
};
|
|
in
|
|
fetchsrc version {
|
|
x86_64-linux = "sha256-fvGVcp6SpHY0UuWurRuypDXbWEs565bK1Peg0Q4Y0m8=";
|
|
aarch64-linux = "sha256-7h8l4Pm34UCZ5NhD1scM1c5sM4ePGLDRGAQBfI5vSHI=";
|
|
x86_64-darwin = "sha256-2S+D5Gg98GEL5L6bC8ZUSEJXFs74ZaZlNkYHYJYZvqw=";
|
|
aarch64-darwin = "sha256-rEhMX+v2sjsmc1p22uscjIyhcnpv2fWjgEnU+lUq9RE=";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D octant $out/bin/octant
|
|
runHook postInstall
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
$out/bin/octant --help
|
|
$out/bin/octant version | grep "${version}"
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
dontPatchELF = true;
|
|
dontPatchShebangs = true;
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://octant.dev/";
|
|
changelog = "https://github.com/vmware-tanzu/octant/blob/v${version}/CHANGELOG.md";
|
|
description = "Highly extensible platform for developers to better understand the complexity of Kubernetes clusters";
|
|
longDescription = ''
|
|
Octant is a tool for developers to understand how applications run on a
|
|
Kubernetes cluster.
|
|
It aims to be part of the developer's toolkit for gaining insight and
|
|
approaching complexity found in Kubernetes. Octant offers a combination of
|
|
introspective tooling, cluster navigation, and object management along
|
|
with a plugin system to further extend its capabilities.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jk ];
|
|
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
|
|
};
|
|
}
|