summaryrefslogtreecommitdiffstats
path: root/default.nix
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2015-11-21 16:31:42 +0100
committerMatthias Beyer <mail@beyermatthias.de>2015-11-21 16:31:42 +0100
commitc3c3ec0b2942071dc0208933a3bfdcc8a557c66f (patch)
treee0a75607cd44b6b1d2bff596ed989e9e75535731 /default.nix
parent92fddae2308c12c8968feacd0be4f6376e4a341f (diff)
Switch to pkgs.rustUnstable, so we do not need to rebuild rustc (wtf?)
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 5acbfbad..1577aed0 100644
--- a/default.nix
+++ b/default.nix
@@ -1,7 +1,7 @@
{ pkgs ? (import <nixpkgs> {}) }:
let
- env = with pkgs.rustPlatform; [
+ env = with pkgs.rustUnstable; [
rustc
cargo
];