cargo with gcc for nixos

This commit is contained in:
Ruben Moor 2020-06-03 21:50:02 -05:00
parent a978880465
commit 77c8a49291
1 changed files with 8 additions and 0 deletions

8
shell.nix Normal file
View File

@ -0,0 +1,8 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "my-rust-env";
buildInputs = [
pkgs.cargo
pkgs.gcc
];
}