Skip to content

Instantly share code, notes, and snippets.

@plchldr
Last active July 22, 2021 19:36
Show Gist options
  • Save plchldr/4da95294deb3014ea55cdd53b2905223 to your computer and use it in GitHub Desktop.
Save plchldr/4da95294deb3014ea55cdd53b2905223 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let
rust = rustChannels.stable.rust.override { extensions = [ "rust-src" ]; };
in
stdenv.mkDerivation {
name = "rust-env";
buildInputs = [ rust rustracer rustfmt ];
RUST_SRC_PATH = "${rust}/lib/rustlib/src/rust/src/";
}
#test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment