traque/shell.nix

5 lines
131 B
Nix
Raw Normal View History

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