-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed sbcl, now no more wonky symlinkJoin stuff
- Loading branch information
1 parent
cce2760
commit 56e3666
Showing
2 changed files
with
13 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
{ pkgs, ... }: | ||
let | ||
sbcl-env = (pkgs.symlinkJoin { | ||
name = "sbcl-env"; | ||
paths = with pkgs.sbclPackages; [ | ||
# CLI Parser | ||
clingon | ||
sbcl' = pkgs.sbcl.withPackages(ps: with ps; [ | ||
# CLI Parser | ||
clingon | ||
|
||
# CLI stuff | ||
trivial-shell | ||
# CLI stuff | ||
trivial-shell cmd | ||
|
||
# Coloured output! | ||
cl-ansi-term | ||
# Coloured output! | ||
cl-ansi-term | ||
|
||
# Strings & dependencies | ||
str cl-ppcre cl-ppcre-unicode cl-ppcre-template cl-unicode | ||
]; | ||
}); | ||
# Strings & dependencies | ||
str | ||
]); | ||
in | ||
{ | ||
home.packages = [ | ||
sbcl-env | ||
sbcl' | ||
]; | ||
|
||
home.file = { | ||
"common-lisp/sbcl-env".source = sbcl-env; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters