gnu: edi: Update to 0.8.0.
* gnu/packages/enlightenment.scm (edi): Update to 0.8.0. [source]: Download from new uri. [arguments]: Add custom phase to fix clang headers discovery. [native-inputs]: Add check, gettext-minimal. [license]: Add gpl3.
This commit is contained in:
parent
13d3a9bf14
commit
1463079a2d
1 changed files with 15 additions and 7 deletions
|
|
@ -453,25 +453,32 @@ Libraries stack (eo, evas, ecore, edje, emotion, ethumb and elementary).")
|
||||||
(define-public edi
|
(define-public edi
|
||||||
(package
|
(package
|
||||||
(name "edi")
|
(name "edi")
|
||||||
(version "0.6.0")
|
(version "0.8.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.enlightenment.org/rel/apps/edi/"
|
(uri (string-append "https://github.com/Enlightenment/edi/releases/"
|
||||||
name "-" version ".tar.xz"))
|
"download/v" version "/edi-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0iqkah327ms5m7k054hcik2l9v68i4mg9yy52brprfqpd5jk7pw8"))))
|
"01k8gp8r2wa6pyg3dkbm35m6hdsbss06hybghg0qjmd4mzswcd3a"))))
|
||||||
(build-system gnu-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'fix-clang-header
|
||||||
|
(lambda _
|
||||||
|
(substitute* "scripts/clang_include_dir.sh"
|
||||||
|
(("grep clang") "grep clang | head -n1"))
|
||||||
|
#t))
|
||||||
(add-after 'unpack 'set-home-directory
|
(add-after 'unpack 'set-home-directory
|
||||||
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
|
||||||
(lambda _ (setenv "HOME" "/tmp") #t)))
|
(lambda _ (setenv "HOME" "/tmp") #t)))
|
||||||
#:tests? #f)) ; tests require running dbus service
|
#:tests? #f)) ; tests require running dbus service
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("check" ,check)
|
||||||
|
("gettext" ,gettext-minimal)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("clang" ,clang)
|
`(("clang" ,clang)
|
||||||
("efl" ,efl)))
|
("efl" ,efl)))
|
||||||
|
|
@ -482,7 +489,8 @@ the EFL. It's aim is to create a new, native development environment for Linux
|
||||||
that tries to lower the barrier to getting involved in Enlightenment development
|
that tries to lower the barrier to getting involved in Enlightenment development
|
||||||
and in creating applications based on the Enlightenment Foundation Library suite.")
|
and in creating applications based on the Enlightenment Foundation Library suite.")
|
||||||
(license (list license:public-domain ; data/extra/skeleton
|
(license (list license:public-domain ; data/extra/skeleton
|
||||||
license:gpl2)))) ; edi
|
license:gpl2 ; edi
|
||||||
|
license:gpl3)))) ; data/extra/examples/images/mono-runtime.png
|
||||||
|
|
||||||
(define-public lekha
|
(define-public lekha
|
||||||
(package
|
(package
|
||||||
|
|
|
||||||
Reference in a new issue