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