nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 27 lines 791 B view raw
1{ 2 lib, 3 fetchurl, 4 appimageTools, 5}: 6 7appimageTools.wrapType2 rec { 8 pname = "jet-pilot"; 9 version = "1.35.0"; 10 11 src = fetchurl { 12 url = "https://github.com/unxsist/jet-pilot/releases/download/v${version}/JET.Pilot_${version}_amd64.AppImage"; 13 hash = "sha256-W1VRV29ZV8nD3wAcSNAsWguN8s+zio0lsVaZwAnCOwE="; 14 }; 15 16 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 17 18 meta = { 19 description = "Open-source Kubernetes desktop client that focuses on less clutter, speed and good looks"; 20 homepage = "https://jet-pilot.app/"; 21 changelog = "https://github.com/unxsist/jet-pilot/releases"; 22 license = lib.licenses.mit; 23 platforms = [ "x86_64-linux" ]; 24 maintainers = with lib.maintainers; [ kashw2 ]; 25 mainProgram = "jet-pilot"; 26 }; 27}