hypergraph-drawing/shell.nix
2022-05-29 15:16:46 +02:00

9 lines
181 B
Nix

with (import <nixpkgs> {});
mkShell {
nativeBuildInputs = with pkgs; [
(python3.withPackages (ps: with ps; [ pydot ]))
asymptote
texlive.combined.scheme-medium
];
}