mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: plotutils: Allow compilation with newer libpng.
* gnu-system.am (dist_patch_DATA): Add it. * gnu/packages/patches/plotutils-libpng-jmpbuf.patch: New file. * gnu/packages/plotutils.scm (plotutils): Add `plotutils-libpng-jmpbuf.patch' as an input, and apply it.
This commit is contained in:
parent
f50ad3e777
commit
8e5e7299d1
3 changed files with 32 additions and 4 deletions
|
@ -22,7 +22,8 @@
|
|||
#:use-module (guix download)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module (gnu packages libpng))
|
||||
#:use-module (gnu packages libpng)
|
||||
#:use-module (gnu packages))
|
||||
|
||||
(define-public plotutils
|
||||
(package
|
||||
|
@ -36,10 +37,13 @@
|
|||
(base32
|
||||
"1arkyizn5wbgvbh53aziv3s6lmd3wm9lqzkhxb3hijlp1y124hjg"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments '(#:patches (list (assoc-ref %build-inputs "patch/jmpbuf"))))
|
||||
(inputs `(("libpng" ,libpng)
|
||||
("libx11" ,libx11)
|
||||
("libxt" ,libxt)
|
||||
("libxaw" ,libxaw)))
|
||||
("libxaw" ,libxaw)
|
||||
("patch/jmpbuf"
|
||||
,(search-patch "plotutils-libpng-jmpbuf.patch"))))
|
||||
(home-page
|
||||
"http://www.gnu.org/software/plotutils/")
|
||||
(synopsis "Plotting utilities and library")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue