Skip to content

Commit

Permalink
nexusmods-app: add long description
Browse files Browse the repository at this point in the history
Add a long description that documents whether or not RAR archive mods
are supported and how to enable support.
  • Loading branch information
MattSturgeon committed Aug 14, 2024
1 parent 1148136 commit 07db828
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion pkgs/by-name/ne/nexusmods-app/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ buildDotnetModule rec {
};

meta = {
description = "Game mod installer, creator and manager";
mainProgram = "NexusMods.App";
homepage = "https://github.com/Nexus-Mods/NexusMods.App";
changelog = "https://github.com/Nexus-Mods/NexusMods.App/releases/tag/${src.rev}";
Expand All @@ -131,5 +130,32 @@ buildDotnetModule rec {
MattSturgeon
];
platforms = lib.platforms.linux;
description = "Game mod installer, creator and manager";
longDescription = ''
A mod installer, creator and manager for all your popular games.
Currently experimental and undergoing active development,
new releases may include breaking changes!
${
if _7zz.meta.unfree then
''
This "unfree" variant includes support for mods packaged as RAR archives.
''
else
''
It is strongly recommended that you use the "unfree" variant of this package,
which provides support for mods packaged as RAR archives.
You can also enable unrar support manually, by overriding the `_7zz` used:
```nix
pkgs.nexusmods-app.override {
_7zz = pkgs._7zz-rar;
}
```
''
}
'';
};
}

0 comments on commit 07db828

Please sign in to comment.