nixos-config/overlays/rotp-foodogsquared/default.nix

25 lines
781 B
Nix
Raw Normal View History

2025-01-12 06:21:02 +00:00
final: prev:
let
rotpDesktop = prev.makeDesktopItem {
name = "com.remnantsoftheprecursors.ROTP";
desktopName = "Remnants of the Precursors";
exec = "rotp";
type = "Application";
icon = "com.remnantsoftheprecursors.ROTP";
categories = [ "Application" "Game" ];
};
2025-01-29 04:48:19 +00:00
in {
2025-01-12 06:21:02 +00:00
rotp-foodogsquared = prev.rotp.overrideAttrs (finalAttrs: prevAttrs: {
2025-01-29 04:48:19 +00:00
desktopItems = (prevAttrs.desktopItems or [ ]) ++ [ rotpDesktop ];
nativeBuildInputs = prevAttrs.nativeBuildInputs or [ ]
++ [ prev.copyDesktopItems ];
2025-01-12 06:21:02 +00:00
postInstall = ''
${prevAttrs.postInstall or ""}
2025-01-29 04:48:19 +00:00
install -Dm0644 ${./com.remnantsoftheprecursors.ROTP.png} ${
placeholder "out"
}/share/icons/hicolor/128x128/apps/com.remnantsoftheprecursors.ROTP.png
2025-01-12 06:21:02 +00:00
'';
});
}