From 02eafbf75845af78cdc5dd1f40d0eeb8aa9578e5 Mon Sep 17 00:00:00 2001 From: c74d <8573dd@gmail.com> Date: Sun, 18 Mar 2018 23:03:40 +0000 Subject: [PATCH] Software: Update Rust to 1.24.1 Update my Rust toolchain installation from version 1.22.1 to version 1.24.1 to escape a jobserver bug: . Version 1.24.1 comes with rustfmt, so this patch uninstalls the Nix package for rustfmt. --- software/devel/languages/programming/rust/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/software/devel/languages/programming/rust/default.nix b/software/devel/languages/programming/rust/default.nix index 6978fdb..66f3114 100644 --- a/software/devel/languages/programming/rust/default.nix +++ b/software/devel/languages/programming/rust/default.nix @@ -6,10 +6,8 @@ ]; sw = p: with p; ([ (rustChannelOf { - # The last version of 2017, as of 2017-12-30. - channel = "1.22.1"; + channel = "1.24.1"; }).rust - rustfmt rustracer ]); }