pharmacy/shell.nix

9 lines
144 B
Nix
Raw Permalink Normal View History

2021-11-10 20:28:08 +00:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "rust-dev";
buildInputs = with pkgs; [
rustc cargo rust-analyzer rustfmt
];
}