mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ lib, fetchurl, appimageTools, wrapGAppsHook, makeWrapper }:
|
|
|
|
let
|
|
pname = "lens";
|
|
version = "6.3.0";
|
|
build = "2022.12.221341-latest";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://api.k8slens.dev/binaries/Lens-${build}.x86_64.AppImage";
|
|
sha256 = "sha256-IJkm2Woz362jydFph9ek+5Jh2jtDH8kKvWoLQhTZPvc=";
|
|
name = "${pname}.AppImage";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit name src;
|
|
};
|
|
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit name src;
|
|
|
|
extraInstallCommands =
|
|
''
|
|
mv $out/bin/${name} $out/bin/${pname}
|
|
source "${makeWrapper}/nix-support/setup-hook"
|
|
wrapProgram $out/bin/${pname} \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
|
install -m 444 -D ${appimageContents}/lens.desktop $out/share/applications/${pname}.desktop
|
|
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/512x512/apps/lens.png \
|
|
$out/share/icons/hicolor/512x512/apps/${pname}.png
|
|
substituteInPlace $out/share/applications/${pname}.desktop \
|
|
--replace 'Icon=lens' 'Icon=${pname}' \
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "The Kubernetes IDE";
|
|
homepage = "https://k8slens.dev/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dbirks RossComputerGuy ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|