wlstreamer/shell.nix

8 lines
237 B
Nix
Raw Normal View History

2022-01-06 17:27:02 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ rustc cargo gcc wf-recorder ];
buildInputs = with pkgs; [ rustfmt clippy ];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}