From bdc08a5a12d6113e0c7fb06b13e82be044b60202 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 30 Aug 2017 22:19:39 +0200 Subject: [PATCH] Use overlay from Mozilla for build env, to have current rust compiler --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index c0dfb890..bbc0e812 100644 --- a/default.nix +++ b/default.nix @@ -1,8 +1,8 @@ { pkgs ? (import {}) }: let - env = with pkgs.rustStable; [ - rustc + env = with pkgs.latest.rustChannels.stable; [ + rust cargo ];