gnu: eternalterminal: Update to 6.0.7.

* gnu/packages/terminals.scm (eternalterminal): Update to 6.0.7.
[arguments]: Remove unnecessary phases.  The removed directories no longer
exist.
This commit is contained in:
Nicolas Goaziou 2020-05-31 01:57:20 +02:00
parent b378297798
commit 47c2db84b8
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1036,7 +1036,7 @@ (define-public kitty
(define-public eternalterminal
(package
(name "eternalterminal")
(version "5.1.10")
(version "6.0.7")
(source
(origin
(method git-fetch)
@ -1045,7 +1045,7 @@ (define-public eternalterminal
(commit (string-append "et-v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0jh89229bd9s82h3aj6faaybwr5xvnk8w2kgz47gq263pz021zpl"))))
(base32 "03pdspggqxkmz95qb96pig5x0xw18hy9a7ivszydr32ry6kxxx1h"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags '("-DBUILD_TEST=ON")
@ -1055,12 +1055,6 @@ (define-public eternalterminal
(lambda* (#:key inputs #:allow-other-keys)
(let ((tests (assoc-ref inputs "googletest")))
(copy-recursively tests "external/googletest"))
#t))
(add-after 'install 'dont-provide-gtest-libraries
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(delete-file-recursively (string-append out "/include"))
(delete-file-recursively (string-append out "/lib")))
#t)))))
(inputs
`(("gflags" ,gflags)