mercury/shell.nix

35 lines
894 B
Nix
Raw Normal View History

2021-01-01 19:04:22 +01:00
let
moz_overlay = import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz);
2021-01-03 22:09:40 +01:00
nixpkgs = import <nixos-unstable> { overlays = [ moz_overlay ]; };
2021-01-01 19:04:22 +01:00
rustNightlyChannel = (nixpkgs.rustChannelOf { date = "2020-03-19"; channel = "nightly"; }).rust.override {
extensions = [
"rust-src"
"rls-preview"
"clippy-preview"
"rustfmt-preview"
];
};
rustStableChannel = nixpkgs.latest.rustChannels.stable.rust.override {
extensions = [
"rust-src"
"rls-preview"
"clippy-preview"
"rustfmt-preview"
];
};
in
with nixpkgs;
stdenv.mkDerivation {
name = "moz_overlay_shell";
buildInputs = [
rustStableChannel
2021-01-03 22:09:40 +01:00
(vscode-with-extensions.override {
vscodeExtensions = with vscode-extensions; [
bbenoist.Nix
vadimcn.vscode-lldb
matklad.rust-analyzer
];
})
2021-01-01 19:04:22 +01:00
];
}