diff options
| author | Christine Dodrill <me@christine.website> | 2021-01-28 10:48:43 -0500 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2021-01-28 10:49:49 -0500 |
| commit | a1be15809f836310d1bf5a33a53b8311a4c3de72 (patch) | |
| tree | 491ff72b14b2cdea4b5f0688699c889f62bf79a3 | |
| parent | 23091a79369a7a2f11ce48637db753dd413d86bd (diff) | |
| download | xesite-a1be15809f836310d1bf5a33a53b8311a4c3de72.tar.xz xesite-a1be15809f836310d1bf5a33a53b8311a4c3de72.zip | |
fix rust-analyzer
Signed-off-by: Christine Dodrill <me@christine.website>
| -rw-r--r-- | shell.nix | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,7 @@ let sources = import ./nix/sources.nix; - pkgs = import sources.nixpkgs { }; + pkgs = + import sources.nixpkgs { overlays = [ (import sources.nixpkgs-mozilla) ]; }; dhallpkgs = import sources.easy-dhall-nix { inherit pkgs; }; dhall-yaml = dhallpkgs.dhall-yaml-simple; dhall = dhallpkgs.dhall-simple; @@ -33,5 +34,7 @@ mkShell { CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie"; RUST_LOG = "debug"; RUST_BACKTRACE = "1"; + RUST_SRC_PATH = + "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library"; GITHUB_SHA = "devel"; } |
