Minor Nix environent tweaks (#209)
* envrc: made lorri optional * shell.nix: added RUST_SRC_PATH, so rust-analyzer works out of the boxmain
parent
e54c97edd8
commit
32039ccbb4
7
.envrc
7
.envrc
|
@ -1,2 +1,7 @@
|
||||||
use_nix
|
# If lorri exists, better try it first.
|
||||||
|
if has lorri; then
|
||||||
eval "$(lorri direnv)"
|
eval "$(lorri direnv)"
|
||||||
|
else
|
||||||
|
# Otherwise fall back to pure nix
|
||||||
|
use nix
|
||||||
|
fi
|
||||||
|
|
10
shell.nix
10
shell.nix
|
@ -6,7 +6,6 @@ let
|
||||||
});
|
});
|
||||||
pinned = builtins.fetchGit {
|
pinned = builtins.fetchGit {
|
||||||
# Descriptive name to make the store path easier to identify
|
# Descriptive name to make the store path easier to identify
|
||||||
name = "nixos-unstable-2020-04-26";
|
|
||||||
url = "https://github.com/nixos/nixpkgs/";
|
url = "https://github.com/nixos/nixpkgs/";
|
||||||
# Commit hash for nixos-unstable as of 2020-04-26
|
# Commit hash for nixos-unstable as of 2020-04-26
|
||||||
# `git ls-remote https://github.com/nixos/nixpkgs nixos-unstable`
|
# `git ls-remote https://github.com/nixos/nixpkgs nixos-unstable`
|
||||||
|
@ -14,20 +13,23 @@ let
|
||||||
rev = "1fe6ed37fd9beb92afe90671c0c2a662a03463dd";
|
rev = "1fe6ed37fd9beb92afe90671c0c2a662a03463dd";
|
||||||
};
|
};
|
||||||
nixpkgs = import pinned { overlays = [ mozillaOverlay ]; };
|
nixpkgs = import pinned { overlays = [ mozillaOverlay ]; };
|
||||||
rust-nightly = with nixpkgs; ((rustChannelOf { date = "2021-03-01"; channel = "nightly"; }).rust.override {
|
toolchain = with nixpkgs; (rustChannelOf { date = "2021-03-01"; channel = "nightly"; });
|
||||||
|
rust-wasm = toolchain.rust.override {
|
||||||
targets = [ "wasm32-unknown-unknown" ];
|
targets = [ "wasm32-unknown-unknown" ];
|
||||||
});
|
};
|
||||||
in
|
in
|
||||||
with nixpkgs; pkgs.mkShell {
|
with nixpkgs; pkgs.mkShell {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
clang
|
clang
|
||||||
pkg-config
|
pkg-config
|
||||||
rust-nightly
|
rust-wasm
|
||||||
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
||||||
darwin.apple_sdk.frameworks.Security
|
darwin.apple_sdk.frameworks.Security
|
||||||
];
|
];
|
||||||
|
|
||||||
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
||||||
PROTOC = "${protobuf}/bin/protoc";
|
PROTOC = "${protobuf}/bin/protoc";
|
||||||
|
RUST_SRC_PATH = "${toolchain.rust-src}/lib/rustlib/src/rust/library/";
|
||||||
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
ROCKSDB_LIB_DIR = "${rocksdb}/lib";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue