Merge pull request #1033 from matthiasbeyer/nix-mozilla-overlay

Use overlay from Mozilla for build env, to have current rust compiler
This commit is contained in:
Matthias Beyer 2017-08-31 19:01:30 +02:00 committed by GitHub
commit c22aca008a
1 changed files with 2 additions and 2 deletions

View File

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