Skip to content

Commit

Permalink
clean up wrapFerus in flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
jtbx committed Oct 26, 2024
1 parent 24244a1 commit 8b20bc1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,11 @@

wrapFerus =
let
makeWrapperArgs = ''
--prefix LD_LIBRARY_PATH : ${LD_LIBRARY_PATH}
'';
makeWrapperArgs = "--prefix LD_LIBRARY_PATH : ${LD_LIBRARY_PATH}";
in
''
wrapProgram "$(pwd)"/ferus ${makeWrapperArgs}
wrapProgram "$(pwd)"/ferus_process ${makeWrapperArgs}
wrapProgram ferus ${makeWrapperArgs}
wrapProgram ferus_process ${makeWrapperArgs}
'';

postInstall = ''
Expand Down

0 comments on commit 8b20bc1

Please sign in to comment.