quickserv/shell.nix

18 lines
220 B
Nix
Raw Permalink Normal View History

2020-03-27 23:50:48 +00:00
let pkgs = import <nixpkgs> { };
2020-05-28 18:47:28 +00:00
in pkgs.mkShell {
buildInputs = with pkgs; [
# go
go
goimports
nur.repos.xe.gopls
vgo2nix
# rust
cargo
cargo-watch
rls
rustc
rustfmt
];
}