From ed3aa5abc685bbe4111c321e1e9bf89c9c148c59 Mon Sep 17 00:00:00 2001 From: catvayor Date: Mon, 3 Jun 2024 13:26:58 +0200 Subject: [PATCH] no need of nightly --- shell.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index 51e7db0..eaa9a72 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,4 @@ { pkgs ? (import ) { }, lib ? pkgs.lib}: -let - fenix = import (fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz") { }; -in pkgs.mkShell { - buildInputs = with fenix.latest; [ cargo rustc rustfmt ]; + buildInputs = with pkgs; [ cargo rustc rustfmt ]; }