Files
fldsmdfr/shell.nix
2023-03-02 15:31:31 +09:00

12 lines
190 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
packages = with pkgs; [
cargo
rustfmt
rustc
libnotify
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
}