tfcconnection/shell.nix
Chris Cochrun 4242f0d05a adding quicklisp and sbcl to add parenscript possibly
These are all just testing pieces but possible changes to add
2023-05-25 09:26:06 -05:00

23 lines
278 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
name = "tfc-env";
nativeBuildInputs = [
];
buildInputs = [
hugo
go
nodejs
clojure
clojure-lsp
clj-kondo
sbcl
];
shellHook = ''
alias hss='hugo server --noHTTPCache'
'';
}