diff options
Diffstat (limited to 'sundry/spine_search_cgi/shell.nix')
-rwxr-xr-x | sundry/spine_search_cgi/shell.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sundry/spine_search_cgi/shell.nix b/sundry/spine_search_cgi/shell.nix new file mode 100755 index 0000000..7f37eee --- /dev/null +++ b/sundry/spine_search_cgi/shell.nix @@ -0,0 +1,22 @@ +#!/usr/bin/env -S nix-shell --pure +{ pkgs ? import <nixpkgs> {} }: +pkgs.mkShell { + buildInputs = with pkgs; [( + with pkgs; [ + nixFlakes + rund + dub + ldc + sqlite + nix-prefetch-git + validatePkgConfig + jq + git + ] + )]; + shellHook = '' + if [[ -e ".envrc" ]]; then + source .envrc + fi + ''; +} |