mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -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,8 +229,9 @@ (define-public graphicsmagick
|
|||
"0x96wcspcqmkcy7jagfifgq2iamcf0ql9swvn6f2n79mb7dxj36n"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "--with-frozenpaths"
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "--with-frozenpaths"
|
||||
"--enable-shared=yes"
|
||||
"--with-x=yes"
|
||||
"--with-quantum-depth=16" ;required by Octave
|
||||
|
|
Loading…
Reference in a new issue