Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 36ee64276ade
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e3e50a12cc4f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 6, 2019

  1. plantuml: downgrade graphviz to 2.32

    PlantUML discourages Graphviz 2.39+ due to rendering bugs: see
    http://plantuml.com/faq (heading: "Which version of Graphviz should I use ?")
    nightkr committed Mar 6, 2019
    Copy the full SHA
    b524025 View commit details

Commits on Mar 8, 2019

  1. Merge pull request #56957 from teozkr/plantuml-graphviz-2.32

    plantuml: downgrade graphviz to 2.32
    infinisil authored Mar 8, 2019
    Copy the full SHA
    e3e50a1 View commit details
Showing with 5 additions and 1 deletion.
  1. +5 −1 pkgs/top-level/all-packages.nix
6 changes: 5 additions & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4915,7 +4915,11 @@ in

pk2cmd = callPackage ../tools/misc/pk2cmd { };

plantuml = callPackage ../tools/misc/plantuml { };
plantuml = callPackage ../tools/misc/plantuml {
# Graphviz 2.39 and 2.40 are discouraged by the PlantUML project, see
# http://plantuml.com/faq (heading: "Which version of Graphviz should I use ?")
graphviz = graphviz_2_32;
};

plan9port = callPackage ../tools/system/plan9port { };