mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: feh: Use G-expressions.
* gnu/packages/image-viewers.scm (feh)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
a7c3eb8fdf
commit
a432ae0c0b
1 changed files with 10 additions and 8 deletions
|
@ -173,14 +173,16 @@ (define-public feh
|
|||
"185wwqd60r2rk6lzcvd6sl58589qfqrfnf7lqd6friyj84n9cjc6"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases (modify-phases %standard-phases (delete 'configure))
|
||||
#:test-target "test"
|
||||
#:make-flags
|
||||
(list ,(string-append "CC=" (cc-for-target))
|
||||
(string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||
"exif=1"
|
||||
"inotify=1"
|
||||
"magic=1")))
|
||||
(list #:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)) ; no configure script
|
||||
#:test-target "test"
|
||||
#:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output)
|
||||
"exif=1"
|
||||
"inotify=1"
|
||||
"magic=1")))
|
||||
(native-inputs
|
||||
(list perl perl-test-command))
|
||||
(inputs (list curl
|
||||
|
|
Loading…
Reference in a new issue