mdBook/shell.nix

10 lines
141 B
Nix
Raw Normal View History

2020-06-04 10:50:02 +08:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "my-rust-env";
buildInputs = [
pkgs.cargo
pkgs.gcc
2020-07-06 23:31:43 +08:00
pkgs.rustup
2020-06-04 10:50:02 +08:00
];
}