graphviz: 10.0.1 -> 12.1.0

This commit is contained in:
April Merrill 2024-08-12 17:22:16 -05:00
parent 79f7a31408
commit 3f6f0c80f1

View File

@ -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
'';