no need of nightly

This commit is contained in:
catvayor 2024-06-03 13:26:58 +02:00
parent 5728936d4d
commit ed3aa5abc6

View file

@ -1,7 +1,4 @@
{ pkgs ? (import <nixpkgs>) { }, 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 ];
}