mdBook/shell.nix

9 lines
125 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
];
}