mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add elementary.
* gnu/packages/enlightenment.scm (elementary): New variable.
This commit is contained in:
parent
538fb23ea0
commit
146ee5cd28
1 changed files with 25 additions and 0 deletions
|
@ -122,3 +122,28 @@ (define-public efl
|
|||
graphics rendering, UI layout and themes, interaction with OS, access to
|
||||
removable devices or support for multimedia.")
|
||||
(license (list license:bsd-2 license:lgpl2.1 license:zlib)))) ; different parts under different licenses
|
||||
|
||||
(define-public elementary
|
||||
(package
|
||||
(name "elementary")
|
||||
(version "1.13.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append
|
||||
"http://download.enlightenment.org/rel/libs/elementary/elementary-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "133p4yaynmy37yhk2gxwlc8a2n2wy7cbh4rd7nsnl5929wqb9waj"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("pkg-config" ,pkg-config)))
|
||||
(propagated-inputs
|
||||
`(("efl" ,efl))) ; elementary.pc, elementary-cxx.pc
|
||||
(home-page "http://www.enlightenment.org")
|
||||
(synopsis "Widget library of Enlightenment world")
|
||||
(description
|
||||
"Elementary is a widget library/toolkit, part of the Enlightenment
|
||||
Foundation Libraries. It is build upon Edje and Evas libraries and uses
|
||||
full capabilities of EFL.")
|
||||
(license license:lgpl2.1)))
|
||||
|
|
Loading…
Reference in a new issue