eva/shell.nix
2020-11-02 20:00:42 +05:30

11 lines
131 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cargo
rustc
rustfmt
pkg-config
];
}