about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/cluster/octant/default.nix
blob: 4ccc05189c9ee441c804632e1c20ea5e7db108e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{ stdenv, fetchurl }:
let
  version = "0.16.3";

  system = stdenv.hostPlatform.system;
  suffix = {
    x86_64-linux = "Linux-64bit";
    aarch64-linux = "Linux-arm64";
    x86_64-darwin = "macOS-64bit";
  }."${system}" or (throw "Unsupported system: ${system}");

  baseurl = "https://github.com/vmware-tanzu/octant/releases/download";
  fetchsrc = sha256: fetchurl {
    url = "${baseurl}/v${version}/octant_${version}_${suffix}.tar.gz";
    sha256 = sha256."${system}";
  };
in
stdenv.mkDerivation rec {
  pname = "octant";
  inherit version;

  src = fetchsrc {
    x86_64-linux = "1c6v7d8i494k32b0zrjn4fn1idza95r6h99c33c5za4hi7gqvy0x";
    aarch64-linux = "153jd4wsq8qc598w7y4d30dy20ljyhrl68cc3pig1p712l5258zs";
    x86_64-darwin = "0y2qjdlyvhrzwg0fmxsr3jl39kd13276a7wg0ndhdjfwxvdwpxkz";
  };

  doBuild = false;
  doCheck = false;

  installPhase = ''
    mkdir -p "$out/bin"
    mv octant $out/bin
  '';

  meta = with stdenv.lib; {
    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.
    '';
    homepage = "https://octant.dev/";
    license = licenses.asl20;
    platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ];
    maintainers = with maintainers; [ jk ];
  };
}