summaryrefslogtreecommitdiffstats
path: root/pkgs/desktops/e17/enlightenment/default.nix
blob: d3d74cac82a99fdce44bb5c21dbad58a6d618416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, pkgconfig, eina, eet, evas, ecore, edje, efreet, e_dbus }:
stdenv.mkDerivation rec {
  name = "enlightenment-0.16.999.55225";
  src = fetchurl {
    url = "http://download.enlightenment.org/snapshots/2010-12-03/${name}.tar.gz";
    sha256 = "1cv701fidp9mx3g5m9klmzsp0fj149rb133v1w76rzms3a0wljl1";
  };
  buildInputs = [ pkgconfig eina eet ecore evas edje efreet e_dbus ];
  configureFlags = "--with-profile=FAST_PC";
  meta = {
    description = "Enlightenment, the window manager";
    longDescription = ''
      The Enlightenment Desktop shell provides an efficient yet
      breathtaking window manager based on the Enlightenment
      Foundation Libraries along with other essential desktop
      components like a file manager, desktop icons and widgets.

      It boasts a un-precedented level of theme-ability while still
      being capable of performing on older hardware or embedded
      devices.
    '';
    homepage = http://enlightenment.org/;
    license = stdenv.lib.licenses.bsd2;  # not sure
  };
}