fixme-y1.dot 577 B

123456789101112131415161718192021222324252627
  1. /* apt-rdepends -dotty nano
  2. * y levels to fix, when compared with dot
  3. * this has one cycle
  4. */
  5. digraph packages {
  6. concentrate=true;
  7. size="30,40";
  8. "nano" [shape=box];
  9. "nano" -> "libc6";
  10. "nano" -> "libncursesw6";
  11. "nano" -> "libtinfo6";
  12. "nano" -> "zlib1g";
  13. "libc6" [shape=box];
  14. "libc6" -> "libgcc1";
  15. "libgcc1" [shape=box];
  16. "libgcc1" -> "gcc-8-base";
  17. "libgcc1" -> "libc6";
  18. "gcc-8-base" [shape=box];
  19. "libncursesw6" [shape=box];
  20. "libncursesw6" -> "libc6";
  21. "libncursesw6" -> "libtinfo6";
  22. "libtinfo6" [shape=box];
  23. "libtinfo6" -> "libc6";
  24. "zlib1g" [shape=box];
  25. "zlib1g" -> "libc6";
  26. }