From 3f6f0c80f1a8804b0b91bbed6165e4257f0f46d7 Mon Sep 17 00:00:00 2001 From: April Merrill Date: Mon, 12 Aug 2024 17:22:16 -0500 Subject: [PATCH] graphviz: 10.0.1 -> 12.1.0 --- pkgs/tools/graphics/graphviz/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/graphics/graphviz/default.nix b/pkgs/tools/graphics/graphviz/default.nix index 9a9bd3a0f2b6..5cb3c24bc150 100644 --- a/pkgs/tools/graphics/graphviz/default.nix +++ b/pkgs/tools/graphics/graphviz/default.nix @@ -32,13 +32,13 @@ let in stdenv.mkDerivation rec { pname = "graphviz"; - version = "10.0.1"; + version = "12.1.0"; src = fetchFromGitLab { owner = "graphviz"; repo = "graphviz"; rev = version; - hash = "sha256-KAqJUVqPld3F2FHlUlfbw848GPXXOmyRQkab8jlH1NM="; + hash = "sha256-C+FFmWExEzPsDAmUiu/HmRVmb1Km4dJujagxN+v0uWw="; }; nativeBuildInputs = [ @@ -76,10 +76,6 @@ stdenv.mkDerivation rec { doCheck = false; # fails with "Graphviz test suite requires ksh93" which is not in nixpkgs preAutoreconf = '' - # components under this directory require a tool `CompileXIB` to build - # and there's no official way to disable this on darwin. - substituteInPlace Makefile.am --replace-fail 'SUBDIRS += macosx' "" - ./autogen.sh '';