mirror of
https://github.com/FliegendeWurst/hypergraph-drawing.git
synced 2024-11-08 18:30:39 +00:00
9 lines
181 B
Nix
9 lines
181 B
Nix
with (import <nixpkgs> {});
|
|
mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
(python3.withPackages (ps: with ps; [ pydot ]))
|
|
asymptote
|
|
texlive.combined.scheme-medium
|
|
];
|
|
}
|