Skip to content

Commit

Permalink
nexusmods-app: define runtimeInputs
Browse files Browse the repository at this point in the history
Allow overriding what is added to the PATH in the wrapper.
  • Loading branch information
MattSturgeon committed Aug 28, 2024
1 parent 41fb6f1 commit c8c753d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/by-name/ne/nexusmods-app/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,13 @@ buildDotnetModule (finalAttrs: {
'';

makeWrapperArgs = [
"--prefix PATH : ${lib.makeBinPath [ desktop-file-utils ]}"
"--prefix PATH : ${lib.makeBinPath finalAttrs.runtimeInputs}"
# Make associating with nxm links work on Linux
"--set APPIMAGE ${placeholder "out"}/bin/NexusMods.App"
];

runtimeInputs = [ desktop-file-utils ];

runtimeDeps = [
fontconfig
libICE
Expand Down

0 comments on commit c8c753d

Please sign in to comment.