gnu: texmacs: Update to 2.1.
* gnu/packages/text-editors.scm (texmacs): Update to 2.1. [arguments]: Remove #t at the end of phases.
This commit is contained in:
parent
6b83da9616
commit
cde7068e8c
1 changed files with 4 additions and 6 deletions
|
@ -839,14 +839,14 @@ (define-public editorconfig-core-c
|
|||
(define-public texmacs
|
||||
(package
|
||||
(name "texmacs")
|
||||
(version "1.99.21")
|
||||
(version "2.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://www.texmacs.org/Download/ftp/tmftp/"
|
||||
"source/TeXmacs-" version "-src.tar.gz"))
|
||||
(sha256
|
||||
(base32 "0zmm8212cha22dp1xablj1h4anlnyhjh09n13ckqf6ppb1bkf4gm"))))
|
||||
(base32 "1gl6k1bwrk1y7hjyl4xvlqvmk5crl4jvsk8wrfp7ynbdin6n2i48"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)
|
||||
|
@ -867,16 +867,14 @@ (define-public texmacs
|
|||
(let ((out (assoc-ref outputs "out")))
|
||||
(substitute* "packages/linux/icons.sh"
|
||||
(("/usr/share")
|
||||
(string-append out "/share")))
|
||||
#t)))
|
||||
(string-append out "/share"))))))
|
||||
(add-after 'install 'install-desktop-file
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
;; Install desktop file.
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(apps (string-append out "/share/applications"))
|
||||
(source "TeXmacs/misc/mime/texmacs.desktop"))
|
||||
(install-file source apps)
|
||||
#t)))
|
||||
(install-file source apps))))
|
||||
(add-before 'configure 'gzip-flags
|
||||
(lambda _
|
||||
(substitute* "Makefile.in"
|
||||
|
|
Loading…
Reference in a new issue