summaryrefslogtreecommitdiffstats
path: root/default.nix
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2017-08-30 22:19:39 +0200
committerMatthias Beyer <mail@beyermatthias.de>2017-08-31 13:07:13 +0200
commitbdc08a5a12d6113e0c7fb06b13e82be044b60202 (patch)
tree63e52a2cb77ff07e42f8d232697480310f5b16dc /default.nix
parent24bcc530877359ed9aa12a451b90d129179b1a32 (diff)
Use overlay from Mozilla for build env, to have current rust compiler
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix4
1 files 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 <nixpkgs> {}) }:
let
- env = with pkgs.rustStable; [
- rustc
+ env = with pkgs.latest.rustChannels.stable; [
+ rust
cargo
];