traque/shell.nix
2024-05-16 22:24:47 +02:00

7 lines
232 B
Nix

{ 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 ];
}