From 71cbd0995a069e962f909a6bdf5f664e85a16dce Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 22 Jan 2009 22:46:39 +0000 Subject: Enlightenment 0.16.8.15. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Patch by John Altobelli , minor edits by Ludovic Courtès . svn path=/nixpkgs/trunk/; revision=13823 --- pkgs/desktops/enlightenment/default.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 pkgs/desktops/enlightenment/default.nix (limited to 'pkgs/desktops/enlightenment') diff --git a/pkgs/desktops/enlightenment/default.nix b/pkgs/desktops/enlightenment/default.nix new file mode 100644 index 000000000000..61f58719b272 --- /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"; + }; + } -- cgit 1.4.1