aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: 2b7dbab4fba7b5bbad80dcfd82658378c4582073 (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
let
  sources = import ./nix/sources.nix;
  pkgs = import sources.nixpkgs { };
  dhallpkgs = import sources.easy-dhall-nix { inherit pkgs; };
  dhall-yaml = dhallpkgs.dhall-yaml-simple;
  dhall = dhallpkgs.dhall-simple;
  xepkgs = import sources.xepkgs { inherit pkgs; };
in with pkgs;
with xepkgs;
mkShell {
  buildInputs = [
    # Go tools
    go
    goimports
    gopls
    vgo2nix

    # kubernetes deployment
    dhall
    dhall-yaml

    # dependency manager
    niv

    # tools
    ispell
  ];

  CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
}