plcc/shell.nix

12 lines
142 B
Nix
Raw Normal View History

2025-12-26 06:45:35 +03:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2025-12-28 16:55:49 +03:00
buildInputs = with pkgs; [
rustc
cargo
typst
typstPackages.diagraph
2025-12-26 06:45:35 +03:00
];
}