mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: graphicsmagick: Use G-expression.
* gnu/packages/imagemagick.scm (graphicsmagick)[arguments]: Use gexp.
This commit is contained in:
parent
ef614fd39e
commit
a38fc96bfc
1 changed files with 11 additions and 9 deletions
|
@ -27,6 +27,7 @@
|
|||
|
||||
(define-module (gnu packages imagemagick)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system perl)
|
||||
#:use-module (guix download)
|
||||
|
@ -228,15 +229,16 @@ (define-public graphicsmagick
|
|||
"0x96wcspcqmkcy7jagfifgq2iamcf0ql9swvn6f2n79mb7dxj36n"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "--with-frozenpaths"
|
||||
"--enable-shared=yes"
|
||||
"--with-x=yes"
|
||||
"--with-quantum-depth=16" ; required by Octave
|
||||
"--enable-quantum-library-names"
|
||||
(string-append "--with-gs-font-dir="
|
||||
(search-input-directory
|
||||
%build-inputs "share/fonts/type1/ghostscript")))))
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "--with-frozenpaths"
|
||||
"--enable-shared=yes"
|
||||
"--with-x=yes"
|
||||
"--with-quantum-depth=16" ;required by Octave
|
||||
"--enable-quantum-library-names"
|
||||
(string-append "--with-gs-font-dir="
|
||||
(search-input-directory
|
||||
%build-inputs "share/fonts/type1/ghostscript")))))
|
||||
(inputs
|
||||
(list bzip2
|
||||
font-ghostscript
|
||||
|
|
Loading…
Reference in a new issue