adding shell for ags dev

This commit is contained in:
Chris Cochrun 2024-06-15 07:15:22 -05:00
parent 5a985cad9f
commit 88dbdc172a
4 changed files with 60 additions and 0 deletions

15
.config/ags/shell.nix Normal file
View file

@ -0,0 +1,15 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell rec {
name = "ags-config";
nativeBuildInputs = [
];
buildInputs = [
stdenv
clojure
clojure-lsp
clj-kondo
];
}