about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/aszlig/rustfmt/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/aszlig/rustfmt/default.nix b/pkgs/aszlig/rustfmt/default.nix
index ab8ecb41..9ec78bf9 100644
--- a/pkgs/aszlig/rustfmt/default.nix
+++ b/pkgs/aszlig/rustfmt/default.nix
@@ -18,7 +18,7 @@ let
     wrap_comments = true;
   };
 
-in rustfmt.overrideAttrs (drv: {
+in (rustfmt.override { asNightly = true; }).overrideAttrs (drv: {
   patches = (drv.patches or []) ++ [ ./config.patch ];
   DEFAULT_CONFIG_FILE = runCommand "rustfmt.conf" {
     nativeBuildInputs = [ remarshal ];