traque/shell.nix

5 lines
119 B
Nix
Raw Permalink Normal View History

2024-05-15 17:36:44 +02:00
{ pkgs ? (import <nixpkgs>) { }, lib ? pkgs.lib}:
pkgs.mkShell {
2024-06-23 12:18:10 +02:00
buildInputs = with pkgs; [ cargo rustc rustfmt ];
2024-05-15 17:36:44 +02:00
}