mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-26 06:31:53 -05:00
Aly Raffauf
08b089b6e2
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / pacifidlog-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-build / slateport-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
28 lines
686 B
Nix
28 lines
686 B
Nix
{
|
|
fetchFromGitHub,
|
|
appimageTools,
|
|
fetchurl,
|
|
hidapi,
|
|
kmod,
|
|
lib,
|
|
python3,
|
|
toybox,
|
|
}:
|
|
appimageTools.wrapType2 rec {
|
|
pname = "hhd-ui";
|
|
version = "3.2.2";
|
|
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;
|
|
maintainers = with maintainers; [harryaskham];
|
|
mainProgram = "hhd-ui";
|
|
};
|
|
}
|