gnu: nnn: Use G-expressions.
* gnu/packages/admin.scm (nnn)[arguments]: Rewrite as G-expressions.master
parent
769202ecf8
commit
755e702db7
|
@ -3917,16 +3917,15 @@ information tool.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
(list #:tests? #f ; no tests
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(delete 'configure)) ; no configure script
|
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list
|
#~(list
|
||||||
(string-append "PREFIX="
|
(string-append "PREFIX=" #$output)
|
||||||
(assoc-ref %outputs "out"))
|
(string-append "CC=" #$(cc-for-target))
|
||||||
(string-append "CC=" ,(cc-for-target))
|
(string-append "PKG_CONFIG=" #$(pkg-config-for-target)))
|
||||||
(string-append "PKG_CONFIG=" ,(pkg-config-for-target)))))
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(delete 'configure)))) ; no configure script
|
||||||
(home-page "https://github.com/jarun/nnn")
|
(home-page "https://github.com/jarun/nnn")
|
||||||
(synopsis "Terminal file browser")
|
(synopsis "Terminal file browser")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue