forked from cadey/xesite
fix rust-analyzer
Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
parent
23091a7936
commit
a1be15809f
|
@ -1,6 +1,7 @@
|
||||||
let
|
let
|
||||||
sources = import ./nix/sources.nix;
|
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; };
|
dhallpkgs = import sources.easy-dhall-nix { inherit pkgs; };
|
||||||
dhall-yaml = dhallpkgs.dhall-yaml-simple;
|
dhall-yaml = dhallpkgs.dhall-yaml-simple;
|
||||||
dhall = dhallpkgs.dhall-simple;
|
dhall = dhallpkgs.dhall-simple;
|
||||||
|
@ -33,5 +34,7 @@ mkShell {
|
||||||
CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
|
CLACK_SET = "Ashlynn,Terry Davis,Dennis Ritchie";
|
||||||
RUST_LOG = "debug";
|
RUST_LOG = "debug";
|
||||||
RUST_BACKTRACE = "1";
|
RUST_BACKTRACE = "1";
|
||||||
|
RUST_SRC_PATH =
|
||||||
|
"${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library";
|
||||||
GITHUB_SHA = "devel";
|
GITHUB_SHA = "devel";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue