about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/lens/darwin.nix
blob: d9d46895d379dca421f277801fc1f5d5f34a2e43 (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
{ lib, stdenv, undmg, fetchurl }:

stdenv.mkDerivation rec {
  pname = "lens";
  version = "2022.12";
  build = "${version}.11410-latest";
  appName = "Lens";

  sourceRoot = "${appName}.app";

  src = fetchurl {
    url = "https://api.k8slens.dev/binaries/Lens-${build}-arm64.dmg";
    sha256 = "sha256-PKWJ2CZ/wacbJnrCZdYwYJzbFVhjIGAw60UGhdw11Mc=";
  };

  buildInputs = [ undmg ];
  installPhase = ''
    mkdir -p "$out/Applications/${appName}.app"
    cp -R . "$out/Applications/${appName}.app"
  '';

  meta = with lib; {
    description = "The Kubernetes IDE";
    homepage = "https://k8slens.dev/";
    license = licenses.lens;
    maintainers = with maintainers; [ dbirks ];
    platforms = [ "aarch64-darwin" ];
  };
}