2020-02-07 22:49:04 +00:00
|
|
|
let
|
2020-02-07 23:15:49 +00:00
|
|
|
sources = import ./nix/sources.nix;
|
2020-02-13 22:45:21 +00:00
|
|
|
pkgs = import sources.nixpkgs { };
|
2020-02-29 21:05:00 +00:00
|
|
|
dhallpkgs = import sources.easy-dhall-nix { inherit pkgs; };
|
|
|
|
dhall-yaml = dhallpkgs.dhall-yaml-simple;
|
|
|
|
dhall = dhallpkgs.dhall-simple;
|
2020-02-13 22:45:21 +00:00
|
|
|
xepkgs = import sources.xepkgs { inherit pkgs; };
|
2020-02-29 21:05:00 +00:00
|
|
|
in with pkgs;
|
|
|
|
with xepkgs;
|
|
|
|
mkShell {
|
|
|
|
buildInputs = [
|
|
|
|
# Go tools
|
|
|
|
go
|
|
|
|
goimports
|
|
|
|
gopls
|
|
|
|
vgo2nix
|
|
|
|
|
|
|
|
# kubernetes deployment
|
|
|
|
dhall
|
|
|
|
dhall-yaml
|
|
|
|
|
|
|
|
# dependency manager
|
|
|
|
niv
|
2020-03-26 21:47:36 +00:00
|
|
|
|
|
|
|
# tools
|
|
|
|
ispell
|
2020-02-29 21:05:00 +00:00
|
|
|
];
|
2020-05-21 22:37:50 +00:00
|
|
|
|
|
|
|
CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
|
2020-02-13 22:45:21 +00:00
|
|
|
}
|