Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions pkgs/development/lisp-modules/stumpwm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ buildLispPackage rec {
if [ "$NIX_LISP" = "sbcl" ]; then
wrapProgram "$out"/bin/stumpwm --set SBCL_HOME "${clwrapper.lisp}/lib/sbcl"
fi;

mv $out/lib/common-lisp/stumpwm/contrib/stumpish $out/bin/stumpish

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this script depend on a common lisp? If so you can use wrapProgram to create a wrapper which sets PATH correctly.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nope, it's a shell script. Cursory tests seemed to work fine. It calls xprop, though, which it requires to be in PATH. Do I need to anything special for that to be the case?

'';
postInstall = ''false'';
};
Expand Down