fluffle/shell.nix
2024-11-13 13:27:23 -08:00

4 lines
87 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell { buildInputs = [ rustc cargo ]; }