about summary refs log tree commit diff
path: root/shells
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-02-17 17:21:54 +0000
committerAlyssa Ross <hi@alyssa.is>2021-02-17 17:21:54 +0000
commit435592dfbf05bf28a02ef4ce36747284027f204e (patch)
treef99e3c05702b7822634ba666d8c9c76b1af4392c /shells
parent95641e1092e5ca651b65cee02b2631277c8a7930 (diff)
downloadnixlib-435592dfbf05bf28a02ef4ce36747284027f204e.tar
nixlib-435592dfbf05bf28a02ef4ce36747284027f204e.tar.gz
nixlib-435592dfbf05bf28a02ef4ce36747284027f204e.tar.bz2
nixlib-435592dfbf05bf28a02ef4ce36747284027f204e.tar.lz
nixlib-435592dfbf05bf28a02ef4ce36747284027f204e.tar.xz
nixlib-435592dfbf05bf28a02ef4ce36747284027f204e.tar.zst
nixlib-435592dfbf05bf28a02ef4ce36747284027f204e.zip
shells/rust.nix: include rustc
This is brings in stuff like rust-gdb (although that does appear to
currently be broken).
Diffstat (limited to 'shells')
-rw-r--r--shells/rust.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shells/rust.nix b/shells/rust.nix
index 340336b264e3..fa81dd435d8d 100644
--- a/shells/rust.nix
+++ b/shells/rust.nix
@@ -4,7 +4,7 @@ with pkgs;
 stdenv.mkDerivation {
   name = "rust-shell";
   buildInputs = [
-    cargo clang clippy cargo-edit llvm pkg-config rust-analyzer rustfmt
+    cargo clang clippy cargo-edit llvm pkg-config rust-analyzer rustc rustfmt
   ];
 
   buildCommand = ''