mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 10:50:40 -05:00
Aly Raffauf
8ec6b664ff
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / adjustor-build (push) Waiting to run
nix-build / clean-install-build (push) Waiting to run
nix-build / hhd-ui-build (push) Waiting to run
nix-build / rofi-bluetooth-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / pacifidlog-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
23 lines
599 B
Nix
23 lines
599 B
Nix
{
|
|
appimageTools,
|
|
fetchurl,
|
|
lib,
|
|
}:
|
|
appimageTools.wrapType2 rec {
|
|
pname = "hhd-ui";
|
|
version = "3.2.3";
|
|
|
|
src = fetchurl {
|
|
hash = "sha256-VhJrOvE+BebJIAeQlwOOsPfqSrvBnJQavGT7glTrG2o=";
|
|
url = "https://github.com/hhd-dev/hhd-ui/releases/download/v${version}/${pname}.AppImage";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Graphical user interface for Handheld Daemon settings from Steam Big Picture Mode, the Desktop, and the Web.";
|
|
homepage = "https://github.com/hhd-dev/hhd-ui/";
|
|
license = licenses.mit;
|
|
mainProgram = "hhd-ui";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|