site/shell.nix

43 lines
700 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
2020-07-09 23:13:29 +00:00
# Rust
cargo
cargo-watch
rls
rustc
rustfmt
2020-07-12 17:41:14 +00:00
# system dependencies
openssl
pkg-config
# 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";
2020-07-12 22:58:38 +00:00
RUST_LOG = "info";
}