Skip to content

Instantly share code, notes, and snippets.

@MagnificentPako
Created August 16, 2018 09:40
Show Gist options
  • Save MagnificentPako/b176611c489f9388411747667d40b146 to your computer and use it in GitHub Desktop.
Save MagnificentPako/b176611c489f9388411747667d40b146 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "rust-env";
buildInputs = [
rustc cargo
# Example Additional Dependencies
pkgconfig openssl llvmPackages.libclang llvm
];
# Set Environment Variables
RUST_BACKTRACE = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment