aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: 5ea450ce5deea6f6d563cb763bb93a25d7cb4079 (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
#!/usr/bin/env -S nix-shell --pure
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs; [(
    with pkgs; [
      # nix_related
      nixFlakes
      nix-prefetch-git
      validatePkgConfig
      jq
      git
      # d_build_related
      rund
      dub
      ldc
      #meson
      # # search_sqlite_related
      # sqlite
    ]
  )];
  shellHook = ''
    if [[ -e ".envrc" ]]; then
      source .envrc
    fi
  '';
}