Fix shell environment
My previous devshell didn't include rustc, which caused the LSP to not work properly.
This commit is contained in:
parent
e88066885e
commit
1e5bdd9e8c
|
@ -31,9 +31,7 @@
|
|||
checks.default = self.packages.${system}.ggelo;
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
inputsFrom = [ self.packages.${system}.ggelo ];
|
||||
packages = [ pkgs.rust-analyzer ];
|
||||
|
||||
packages = with pkgs; [ rustc cargo pkg-config rust-analyzer ];
|
||||
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue