xesite/shell.nix

31 lines
557 B
Nix
Raw Normal View History

let
2020-02-07 23:15:49 +00:00
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
];
2020-05-21 22:37:50 +00:00
CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
}