mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-01-30 22:53:37 +00:00
~
Signed-off-by: roxwize <rae@roxwize.xyz>
This commit is contained in:
parent
46c50a4c59
commit
5cd864baa0
1 changed files with 8 additions and 4 deletions
|
@ -9,6 +9,7 @@
|
|||
imagemagick,
|
||||
makeWrapper,
|
||||
nodejs,
|
||||
copyDesktopItems,
|
||||
electron,
|
||||
makeDesktopItem
|
||||
}: stdenv.mkDerivation rec {
|
||||
|
@ -36,6 +37,7 @@
|
|||
imagemagick
|
||||
makeWrapper
|
||||
nodejs
|
||||
copyDesktopItems
|
||||
];
|
||||
|
||||
yarnBuildScript = "electron-builder";
|
||||
|
@ -63,15 +65,17 @@
|
|||
runHook postInstall
|
||||
'';
|
||||
|
||||
desktopItems = [(
|
||||
makeDesktopItem {
|
||||
desktopItems = [
|
||||
(makeDesktopItem {
|
||||
name = pname;
|
||||
desktopName = "YNOdesktop";
|
||||
genericName = "Desktop client for Yume Nikki Online";
|
||||
comment = "Play Yume Nikki Online";
|
||||
exec = "ynodesktop";
|
||||
icon = "ynodesktop";
|
||||
categories = [ "Game" ];
|
||||
}
|
||||
)];
|
||||
})
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A desktop client for Yume Nikki Online with Discord Rich Presence";
|
||||
|
|
Loading…
Reference in a new issue