This commit is contained in:
Jordan 2023-05-13 22:46:46 -07:00
commit 1a7deeaf76
2 changed files with 27 additions and 0 deletions

9
.envrc Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# the shebang is ignored, but nice for editors
if type -P lorri &>/dev/null; then
eval "$(lorri direnv)"
else
echo 'while direnv evaluated .envrc, could not find the command "lorri" [https://github.com/nix-community/lorri]'
use nix
fi

18
shell.nix Normal file
View File

@ -0,0 +1,18 @@
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/5278c612aea22628aef67cb8f0fb5421d712d3ee.tar.gz") {}
}:
with pkgs;
mkShell {
buildInputs = with lispPackages; [
instaloader
sbcl lispPackages.asdf lispPackages.uiop
lispPackages.local-time
lispPackages.bordeaux-threads
lispPackages.yason
lispPackages.cl-ppcre
lispPackages.drakma
lispPackages.documentation-utils
lispPackages.cl-json
];
}