added appimage "moondeck-buddy"

This commit is contained in:
kenji
2025-07-09 11:10:40 -05:00
parent dfbdf1cd87
commit 6e4fe781ab
3 changed files with 21 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@
./hardware-configuration.nix
../../modules/default/desktop.nix
../../modules/default/dev.nix
../../modules/default/appimage.nix
];
environment.systemPackages = with pkgs; [
+5
View File
@@ -0,0 +1,5 @@
{
imports = [
../../packages/moondeck-buddy/appimage.nix
];
}
+15
View File
@@ -0,0 +1,15 @@
{
appimageTools,
fetchurl,
}: let
pname = "moondeck-buddy";
version = "1.8.2";
src = fetchurl {
url = "https://github.com/FrogTheFrog/moondeck-buddy/releases/download/v${version}/MoonDeckBuddy-${version}-x86_64.AppImage";
hash = "sha256-he1uGC1M/nFcKpMM9JKY4oeexJcnzV0ZRxhTjtJz6xw=";
};
in
appimageTools.wrapType2 {
inherit pname version src;
}