eva/shell.nix

11 lines
131 B
Nix
Raw Normal View History

2020-11-02 14:30:42 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustfmt
pkg-config
];
}