summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakob Klepp <jakob-nixos@truh.in>2021-10-23 17:25:58 +0200
committerJakob Klepp <jakob-nixos@truh.in>2021-10-23 17:49:05 +0200
commit5d5a5fce909a3251312192c49d99837fa809ac29 (patch)
treef1486148c78284506bd9e72f2b4504083436dade
parent536d114230077a231e2e537e3301be02257b5214 (diff)
downloadnixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.tar
nixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.tar.gz
nixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.tar.bz2
nixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.tar.lz
nixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.tar.xz
nixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.tar.zst
nixpkgs-5d5a5fce909a3251312192c49d99837fa809ac29.zip
nixos/plantuml-server: use graphviz instead of graphviz_2_32
The plantuml package made this change as well

https://github.com/NixOS/nixpkgs/pull/123108/commits/e785e1b24be254cc4cd9efe7717b6d248691faed
-rw-r--r--nixos/modules/services/web-apps/plantuml-server.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/web-apps/plantuml-server.nix b/nixos/modules/services/web-apps/plantuml-server.nix
index 5ac3bc5226b..f4bf43f56b9 100644
--- a/nixos/modules/services/web-apps/plantuml-server.nix
+++ b/nixos/modules/services/web-apps/plantuml-server.nix
@@ -58,8 +58,8 @@ in
 
       graphvizPackage = mkOption {
         type = types.package;
-        default = pkgs.graphviz_2_32;
-        defaultText = literalExpression "pkgs.graphviz_2_32";
+        default = pkgs.graphviz;
+        defaultText = literalExpression "pkgs.graphviz";
         description = "Package containing the dot executable.";
       };