nixcfg/pkgs/hhd-ui.nix

28 lines
686 B
Nix
Raw Normal View History

2024-10-13 17:27:50 -04:00
{
fetchFromGitHub,
appimageTools,
fetchurl,
hidapi,
kmod,
lib,
python3,
toybox,
}:
appimageTools.wrapType2 rec {
pname = "hhd-ui";
version = "3.2.2";
2024-10-13 17:27:50 -04:00
src = fetchurl {
url = "https://github.com/hhd-dev/hhd-ui/releases/download/v${version}/${pname}.AppImage";
hash = "sha256-RRXVoeWOO/pR+CAEY0J6Buf/RhA+G0PdxGQVMdAHfwA=";
};
meta = with lib; {
homepage = "https://github.com/hhd-dev/hhd-ui/";
description = "A UI app that can manage Handheld Daemon settings from Steam, the Desktop, and the Web.";
platforms = platforms.linux;
license = licenses.mit;
2024-10-13 17:38:42 -04:00
maintainers = with maintainers; [harryaskham];
2024-10-13 17:27:50 -04:00
mainProgram = "hhd-ui";
};
2024-10-13 17:38:42 -04:00
}