summary refs log tree commit diff
path: root/pkgs/desktops/e17/evas/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/e17/evas/default.nix')
-rw-r--r--pkgs/desktops/e17/evas/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/desktops/e17/evas/default.nix b/pkgs/desktops/e17/evas/default.nix
new file mode 100644
index 000000000000..9d7edc89c21c
--- /dev/null
+++ b/pkgs/desktops/e17/evas/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, pkgconfig, eina, freetype }:
+stdenv.mkDerivation rec {
+  name = "evas-${version}";
+  version = "1.0.1";
+  src = fetchurl {
+    url = "http://download.enlightenment.org/releases/${name}.tar.gz";
+    sha256 = "0xkwyvxy32dwja0i3j8r8bzlybjwlrgmrhcri1bscp3aaj75x2rx";
+  };
+  buildInputs = [ pkgconfig eina freetype ];
+  meta = {
+    description = "Enlightenment's canvas and scenegraph rendering library";
+    longDescription = ''
+      Enlightenment's Evas is a clean display canvas API that
+      implements a scene graph, not an immediate-mode rendering
+      target, is cross-platform, for several target display systems
+      that can draw anti-aliased text, smooth super and sub-sampled
+      scaled images, alpha-blend objects and much more.
+    '';
+    homepage = http://enlightenment.org/;
+    license = stdenv.lib.licenses.bsd2;  # not sure
+  };
+}