diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-03-27 15:16:22 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-03-27 15:16:22 +0100 |
commit | cfa6666921e8077884ffb3707ce8323b01f5d345 (patch) | |
tree | 32b4a42e065b76018bcf6cab1a1701fd1905a7ca /gnu/packages/graph.scm | |
parent | 63bd6643c80f3af8180392eb1bf531bedb8e2201 (diff) | |
download | guix-cfa6666921e8077884ffb3707ce8323b01f5d345.tar guix-cfa6666921e8077884ffb3707ce8323b01f5d345.tar.gz |
gnu: mscgen: Fix build with gd >= 2.3.0.
'gd' no longer provides 'libgd-config', so use 'pkg-config' instead.
* gnu/packages/graph.scm (mscgen)[native-inputs]: Add PKG-CONFIG.
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r-- | gnu/packages/graph.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index aa6ea16ab3..9b391451fe 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -532,6 +532,8 @@ of graphs.") (base32 "08yw3maxhn5fl1lff81gmcrpa4j9aas4mmby1g9w5qcr0np82d1w")))) (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) (inputs `(("gd" ,gd))) (home-page "http://www.mcternan.me.uk/mscgen/") |