jet-pilot: init at 1.31.0 (#334500)

This commit is contained in:
Arne Keller 2024-12-14 19:29:09 +01:00 committed by GitHub
commit 210bae9625
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,27 @@
{
lib,
fetchurl,
appimageTools,
}:
appimageTools.wrapType2 rec {
pname = "jet-pilot";
version = "1.31.0";
src = fetchurl {
url = "https://github.com/unxsist/jet-pilot/releases/download/v${version}/jet-pilot_${version}_amd64.AppImage";
hash = "sha256-jhy8BfCZ0Z4T3lGrxTmSGw+fSDVzTIuvyJftpwMcYo0=";
};
appimageContents = appimageTools.extractType2 { inherit pname version src; };
meta = {
description = "Open-source Kubernetes desktop client that focuses on less clutter, speed and good looks";
homepage = "https://jet-pilot.app/";
changelog = "https://github.com/unxsist/jet-pilot/releases";
license = lib.licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ kashw2 ];
mainProgram = "jet-pilot";
};
}