11 lines
142 B
Nix
11 lines
142 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
rustc
|
|
cargo
|
|
typst
|
|
typstPackages.diagraph
|
|
];
|
|
}
|
|
|