16 lines
190 B
Nix
16 lines
190 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
mkShell rec {
|
|
name = "ags-config";
|
|
|
|
nativeBuildInputs = [
|
|
];
|
|
|
|
buildInputs = [
|
|
stdenv
|
|
clojure
|
|
clojure-lsp
|
|
clj-kondo
|
|
];
|
|
}
|