diff options
author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-05-15 18:10:04 -0400 |
---|---|---|
committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-05-15 22:25:58 -0400 |
commit | 924fabf26347cf2da0a770cd16f956c26e4064f9 (patch) | |
tree | 80c97145dca8188df5f7131694e5dc2f5990b7ff /shell.nix | |
parent | cgi.d arsd update (diff) |
nix-build cleanup, external sources localized
- clean up as external sources kept locally, in
./src/ext_depends/
- remove dub2nix dependency, no longer needed/used
Diffstat (limited to 'shell.nix')
-rwxr-xr-x | shell.nix | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -1,7 +1,19 @@ { pkgs ? import <nixpkgs> {} }: pkgs.mkShell { buildInputs = with pkgs; [ - (import ./nix/pkglst/shell-pkgs.nix { inherit pkgs; }) + ( + with pkgs; [ + nixFlakes + rund + dub + ldc + sqlite + nix-prefetch-git + validatePkgConfig + jq + git + ] + ) ]; shellHook = '' if [[ -e ".envrc" ]]; then |