Skip to content

Commit

Permalink
handheld-daemon-ui: init at 3.2.3 (NixOS#305027)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <[email protected]>
Co-authored-by: Arne Keller <[email protected]>
  • Loading branch information
3 people authored Nov 19, 2024
1 parent 026f90f commit d5808ae
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
15 changes: 14 additions & 1 deletion nixos/modules/services/hardware/handheld-daemon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ in
enable = mkEnableOption "Handheld Daemon";
package = mkPackageOption pkgs "handheld-daemon" { };

ui = {
enable = mkEnableOption "Handheld Daemon UI";
package = mkPackageOption pkgs "handheld-daemon-ui" { };
};

user = mkOption {
type = types.str;
description = ''
Expand All @@ -20,7 +25,10 @@ in
};

config = mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
services.handheld-daemon.ui.enable = mkDefault true;
environment.systemPackages = [
cfg.package
] ++ lib.optional cfg.ui.enable cfg.ui.package;
services.udev.packages = [ cfg.package ];
systemd.packages = [ cfg.package ];

Expand All @@ -31,6 +39,11 @@ in

restartIfChanged = true;

path = mkIf cfg.ui.enable [
cfg.ui.package
pkgs.lsof
];

serviceConfig = {
ExecStart = "${ lib.getExe cfg.package } --user ${ cfg.user }";
Nice = "-12";
Expand Down
42 changes: 42 additions & 0 deletions pkgs/by-name/ha/handheld-daemon-ui/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
lib,
appimageTools,
fetchurl,
}:
let
pname = "handheld-daemon-ui";
version = "3.2.3";

src = fetchurl {
url = "https://github.com/hhd-dev/hhd-ui/releases/download/v${version}/hhd-ui.Appimage";
hash = "sha256-VhJrOvE+BebJIAeQlwOOsPfqSrvBnJQavGT7glTrG2o=";
};
extractedFiles = appimageTools.extractType2 { inherit pname version src; };
in
appimageTools.wrapType2 {
inherit pname version src;

extraInstallCommands = ''
# Handheld-daemon expects the UI binary to be called hhd-ui
mv $out/bin/${pname}* $out/bin/hhd-ui
mkdir -p $out/share/applications
substitute ${extractedFiles}/hhd-ui.desktop \
$out/share/applications/hhd-ui.desktop \
--replace-fail "Exec=AppRun" "Exec=hhd-ui" \
--replace-fail "Categories=game;" "Categories=Game;"
iconDir=$out/share/icons/hicolor/512x512/apps
mkdir -p $iconDir
cp ${extractedFiles}/hhd-ui.png $iconDir
'';

meta = {
description = "UI for the Handheld Daemon";
homepage = "https://github.com/hhd-dev/hhd-ui";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ toast ];
mainProgram = "hhd-ui";
platforms = [ "x86_64-linux" ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}

0 comments on commit d5808ae

Please sign in to comment.