plcc/shell.nix
2025-12-28 16:55:49 +03:00

11 lines
142 B
Nix

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