traque/shell.nix

8 lines
232 B
Nix
Raw Normal View History

2024-05-15 17:36:44 +02:00
{ pkgs ? (import <nixpkgs>) { }, lib ? pkgs.lib}:
let
fenix = import (fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz") { };
in
pkgs.mkShell {
2024-05-16 22:24:47 +02:00
buildInputs = with fenix.latest; [ cargo rustc rustfmt ];
2024-05-15 17:36:44 +02:00
}