mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
jet-pilot: init at 1.31.0
This commit is contained in:
parent
0b53eb4076
commit
6c72a4ac12
27
pkgs/by-name/je/jet-pilot/package.nix
Normal file
27
pkgs/by-name/je/jet-pilot/package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user