initial
This commit is contained in:
commit
1a7deeaf76
9
.envrc
Normal file
9
.envrc
Normal 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
18
shell.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user