added shell.nix to test

This commit is contained in:
Nickiel12 2023-05-06 10:50:07 -07:00
parent 2dd94631ff
commit 9d61ad5fbd

19
shell.nix Normal file
View file

@ -0,0 +1,19 @@
# <shell.nix>
{ pkgs ? import <nixpkgs> {}}:
let
rust_overlay = import (builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz");
pkgs = import <nixpkgs> { overlays = [ rust_overlay ]; };
ruststable = (pkgs.rust-bin.stable.latest.default.override {
extensions = [
"rust-src"
];
});
in
pkgs.mkShell {
buildInputs = with pkgs; [
ruststable
rust-analyzer
bacon
];
}