Use overlay from Mozilla for build env, to have current rust compiler

This commit is contained in:
Matthias Beyer 2017-08-30 22:19:39 +02:00
parent 24bcc53087
commit bdc08a5a12
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
{ pkgs ? (import <nixpkgs> {}) }:
let
env = with pkgs.rustStable; [
rustc
env = with pkgs.latest.rustChannels.stable; [
rust
cargo
];