31 lines
785 B
Nix
31 lines
785 B
Nix
|
{ options, config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
with lib.plusultra;
|
||
|
let
|
||
|
cfg = config.plusultra.apps.doukutsu-rs;
|
||
|
desktopItem = pkgs.makeDesktopItem {
|
||
|
name = "doukutsu-rs";
|
||
|
desktopName = "doukutsu-rs";
|
||
|
genericName =
|
||
|
"A fully playable re-implementation of Cave Story (Doukutsu Monogatari) engine written in Rust.";
|
||
|
exec = "${pkgs.plusultra.doukutsu-rs}/bin/doukutsu-rs";
|
||
|
icon = ./icon.png;
|
||
|
type = "Application";
|
||
|
categories = [ "Game" "AdventureGame" ];
|
||
|
terminal = false;
|
||
|
};
|
||
|
in
|
||
|
{
|
||
|
options.plusultra.apps.doukutsu-rs = with types; {
|
||
|
enable = mkBoolOpt false "Whether or not to enable doukutsu-rs.";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
environment.systemPackages = with pkgs.plusultra; [
|
||
|
doukutsu-rs
|
||
|
desktopItem
|
||
|
];
|
||
|
};
|
||
|
}
|