summary refs log tree commit diff
path: root/pkgs/desktops/enlightenment/default.nix
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-01-22 22:46:39 +0000
committerLudovic Courtès <ludo@gnu.org>2009-01-22 22:46:39 +0000
commit71cbd0995a069e962f909a6bdf5f664e85a16dce (patch)
tree10fbecaaa7760fc190b0b0b3d899fdc396f8a909 /pkgs/desktops/enlightenment/default.nix
parent7137c6dea806c116f84ed5a53eb207dba0309da4 (diff)
downloadnixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.tar
nixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.tar.gz
nixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.tar.bz2
nixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.tar.lz
nixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.tar.xz
nixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.tar.zst
nixpkgs-71cbd0995a069e962f909a6bdf5f664e85a16dce.zip
Enlightenment 0.16.8.15.
Patch by John Altobelli <acocaracha@gmail.com>, minor edits by
Ludovic Courtès <ludo@gnu.org>.

svn path=/nixpkgs/trunk/; revision=13823
Diffstat (limited to 'pkgs/desktops/enlightenment/default.nix')
-rw-r--r--pkgs/desktops/enlightenment/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/desktops/enlightenment/default.nix b/pkgs/desktops/enlightenment/default.nix
new file mode 100644
index 00000000000..61f58719b27
--- /dev/null
+++ b/pkgs/desktops/enlightenment/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, pkgconfig, x11, xlibs, dbus, imlib2, freetype }:
+
+let version = "0.16.8.15"; in
+  stdenv.mkDerivation {
+    name = "enlightenment-${version}";
+
+    src = fetchurl {
+      url = "mirror://sourceforge/enlightenment/e16-${version}.tar.gz";
+      sha256 = "0f8hg79mrk6b3fsvynvsrnqh1zgmvnnza0lf7qn4pq2mqyigbhgk";
+    };
+
+    buildInputs = [pkgconfig imlib2 freetype 
+      xlibs.libX11 xlibs.libXt xlibs.libXext xlibs.libXrender xlibs.libXft ];
+
+    meta = {
+      description = "Desktop shell built on the Enlightenment Foundation Libraries";
+
+      longDescription = ''
+        Enlightenment is a window manager.  Enlightenment is a desktop
+        shell.  Enlightenment is the building blocks to create
+        beautiful applications.  Enlightenment, or simply e, is a
+        group of people trying to make a new generation of software.
+      '';
+
+      homepage = http://enlightenment.org/;
+
+      license = "BSD-style";
+    };
+  }