mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 01:11:55 -05:00
gnu: texmacs: Use G-expressions.
* gnu/packages/text-editors.scm (texmacs)[arguments]: Use G-expressions. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
62f70578eb
commit
2f38bac505
1 changed files with 13 additions and 13 deletions
|
@ -872,19 +872,19 @@ (define-public texmacs
|
|||
qtsvg-5
|
||||
sqlite))
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-icon-directory
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(substitute* "packages/linux/icons.sh"
|
||||
(("/usr/share")
|
||||
(string-append out "/share"))))))
|
||||
(add-before 'configure 'gzip-flags
|
||||
(lambda _
|
||||
(substitute* "Makefile.in"
|
||||
(("^GZIP = gzip -f") "GZIP = gzip -f -n")))))))
|
||||
(list
|
||||
#:tests? #f ; no check target
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-icon-directory
|
||||
(lambda _
|
||||
(substitute* "packages/linux/icons.sh"
|
||||
(("/usr/share")
|
||||
(string-append #$output "/share")))))
|
||||
(add-before 'configure 'gzip-flags
|
||||
(lambda _
|
||||
(substitute* "Makefile.in"
|
||||
(("^GZIP = gzip -f") "GZIP = gzip -f -n")))))))
|
||||
(synopsis "Editing platform with special features for scientists")
|
||||
(description
|
||||
"GNU TeXmacs is a text editing platform which is specialized for
|
||||
|
|
Loading…
Reference in a new issue