2021-01-25 08:26:54 +00:00
|
|
|
{ buildEnv, lib, callPackage, makeWrapper, makeDesktopItem }:
|
2019-01-02 10:47:16 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
description = "Action-adventure game, starring a certain quixotic frog";
|
|
|
|
engine = callPackage ./engine.nix { };
|
|
|
|
data = callPackage ./data.nix { };
|
|
|
|
desktopItem = makeDesktopItem {
|
|
|
|
name = "frogatto";
|
|
|
|
exec = "frogatto";
|
2022-02-22 14:56:15 +00:00
|
|
|
startupNotify = true;
|
2019-01-02 10:47:16 +00:00
|
|
|
icon = "${data}/share/frogatto/modules/frogatto/images/os/frogatto-icon.png";
|
|
|
|
comment = description;
|
|
|
|
desktopName = "Frogatto";
|
|
|
|
genericName = "frogatto";
|
2022-02-22 14:56:15 +00:00
|
|
|
categories = [ "Game" "ArcadeGame" ];
|
2019-01-02 10:47:16 +00:00
|
|
|
};
|
2020-12-19 21:00:25 +00:00
|
|
|
version = "unstable-2020-12-04";
|
2019-08-13 21:52:01 +00:00
|
|
|
in buildEnv {
|
2019-01-02 10:47:16 +00:00
|
|
|
name = "frogatto-${version}";
|
|
|
|
|
2022-08-15 03:40:21 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2019-01-02 10:47:16 +00:00
|
|
|
paths = [ engine data desktopItem ];
|
|
|
|
pathsToLink = [
|
|
|
|
"/bin"
|
|
|
|
"/share/frogatto/data"
|
|
|
|
"/share/frogatto/images"
|
|
|
|
"/share/frogatto/modules"
|
|
|
|
"/share/applications"
|
|
|
|
];
|
|
|
|
|
|
|
|
postBuild = ''
|
|
|
|
wrapProgram $out/bin/frogatto \
|
2022-03-14 18:06:00 +00:00
|
|
|
--chdir "$out/share/frogatto"
|
2019-01-02 10:47:16 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://frogatto.com";
|
2019-01-02 10:47:16 +00:00
|
|
|
description = description;
|
|
|
|
license = with licenses; [ cc-by-30 unfree ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ astro ];
|
|
|
|
};
|
|
|
|
}
|