Created
January 31, 2017 23:10
-
-
Save moretea/d31b5f0b624f8fe77be8e23564ee912b to your computer and use it in GitHub Desktop.
Rust development environment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import (builtins.fetchTarball "https://github.com/NixOS/nixpkgs/archive/a211c1752ce3f6b017edefda49c1c8102a7ce812.tar.gz") {}; | |
{ | |
env = stdenv.mkDerivation { | |
name = "env"; | |
buildInputs = with pkgs; [rustcNightlyBin.rustc cargo]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment