-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pkgs: add emudeck * overlays/default: add emudeck * github: add emudeck
- Loading branch information
1 parent
ccb70cb
commit 0c81d34
Showing
4 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
appimageTools, | ||
fetchurl, | ||
lib, | ||
}: | ||
appimageTools.wrapType2 rec { | ||
pname = "emudeck"; | ||
version = "2.3.0"; | ||
|
||
src = fetchurl { | ||
hash = "sha256-BVlATLKbE9wwMs4844UpXCTZsLW1oRFWf9hujVUpa4k="; | ||
url = "https://github.com/EmuDeck/emudeck-electron/releases/download/v${version}/EmuDeck-${version}.AppImage"; | ||
}; | ||
|
||
extraPkgs = pkgs: | ||
with pkgs; [ | ||
bash | ||
flatpak | ||
fuse2 | ||
git | ||
jq | ||
newt | ||
rsync | ||
unzip | ||
zenity | ||
]; | ||
|
||
meta = with lib; { | ||
description = "EmuDeck utility to manage ROMs on handheld PCs"; | ||
homepage = "https://github.com/EmuDeck/emudeck-electron"; | ||
license = licenses.mit; | ||
mainProgram = "emudeck"; | ||
platforms = platforms.linux; | ||
}; | ||
} |