Skip to content

Instantly share code, notes, and snippets.

@moretea
Created January 31, 2017 23:10
Show Gist options
  • Save moretea/d31b5f0b624f8fe77be8e23564ee912b to your computer and use it in GitHub Desktop.
Save moretea/d31b5f0b624f8fe77be8e23564ee912b to your computer and use it in GitHub Desktop.
Rust development environment
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