aboutsummaryrefslogtreecommitdiffhomepage
path: root/sundry/spine_search_cgi/shell.nix
blob: 64a4e02e005acc609d26c29644cdc0e96585004c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env -S nix-shell --pure
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
  buildInputs = [
    ### nix_related
    direnv
    nixFlakes
    nix-prefetch-git
    validatePkgConfig
    jq
    git
    #ps
    ### d_build_related
    ## package manager
    dub
    ## compiler
    ldc
    rund
    ## linker
    #lld
    #mold
    ## builder
    #ninja
    #meson
    ### sqlite search related
    sqlite
    ### tools
    #curl
    #wget
    aria
    ### candy
    jq
    starship
  ];
  shellHook = ''
    if [[ -f ".envrc" ]]; then
      source .envrc
    fi
    eval "$(starship init bash)"
  '';
}