mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-12-04 14:12:38 -05:00
emudeck: fixup install scripts
This commit is contained in:
parent
b93f0222d4
commit
7dbd19707e
|
@ -1,3 +1,4 @@
|
|||
# This is extremely limited and largely proof-of-concept. Many things will simply not work, including Steam ROM Manager. Expect issues.
|
||||
{
|
||||
appimageTools,
|
||||
fetchurl,
|
||||
|
@ -25,6 +26,18 @@ appimageTools.wrapType2 rec {
|
|||
zenity
|
||||
];
|
||||
|
||||
extraInstallCommands = let
|
||||
appimageContents = appimageTools.extractType2 {
|
||||
inherit pname version src;
|
||||
};
|
||||
in ''
|
||||
install -m 444 -D ${appimageContents}/emudeck.desktop $out/share/applications/emudeck.desktop
|
||||
install -m 444 -D ${appimageContents}/emudeck.png \
|
||||
$out/share/icons/hicolor/scalable/apps/emudeck.png
|
||||
substituteInPlace $out/share/applications/${pname}.desktop \
|
||||
--replace 'Exec=AppRun' 'Exec=${pname}'
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "EmuDeck utility to manage ROMs on handheld PCs";
|
||||
homepage = "https://github.com/EmuDeck/emudeck-electron";
|
||||
|
|
Loading…
Reference in a new issue