guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 1/2] gnu: Add edi.


From: Efraim Flashner
Subject: [PATCH 1/2] gnu: Add edi.
Date: Thu, 8 Sep 2016 13:44:38 +0300

* gnu/packages/enlightenment.scm (edi): New variable.
---
 gnu/packages/enlightenment.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 7cd11b5..a0c5a83 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -275,3 +275,29 @@ Libraries stack (eo, evas, ecore, edje, emotion, ethumb 
and elementary).")
 
 (define-public python2-efl
   (package-with-python2 python-efl))
+
+(define-public edi
+  (package
+    (name "edi")
+    (version "0.4.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (list
+               (string-append "https://download.enlightenment.org/rel/apps/edi";
+                              "/edi-" version ".tar.bz2")
+               (string-append "https://github.com/ajwillia-ms/edi/releases/";
+                              "download/v" version "/edi-" version 
".tar.bz2")))
+        (sha256
+         (base32
+          "02d8hplcviayri8fxws56n362k6zqsf62v8pbn5sbgwrmkqwybhc"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("efl" ,efl)))
+    (home-page "https://www.enlightenment.org/about-edi";)
+    (synopsis "Development environment using the EFL")
+    (description "EDI is a development environment designed for and built using
+the EFL.  It's aim is to create a new, native development environment for Linux
+that trys to lower the barrier to getting involved in Enlightenment development
+and in creating apps based on the EFL suite.")
+    (license license:gpl2)))
-- 
2.10.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]