3
0
Fork 0
forked from mirrors/nixpkgs

pkgs/desktops/e17: Some fixes and now I can start it! \o/

svn path=/nixpkgs/trunk/; revision=29518
This commit is contained in:
Alexander Tsamutali 2011-09-27 23:49:28 +00:00
parent 6fd4c26fc2
commit 3a24231510
2 changed files with 12 additions and 5 deletions

View file

@ -1,12 +1,16 @@
{ stdenv, fetchurl, pkgconfig, eina, eet, evas, ecore, edje, efreet, e_dbus }:
{ stdenv, fetchurl, pkgconfig, eina, eet, evas, ecore, edje, efreet, e_dbus, embryo }:
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";
buildInputs = [ pkgconfig eina eet ecore evas edje efreet e_dbus embryo ];
configureFlags = ''
--with-profile=FAST_PC
--disable-illume
--disable-illume2
'';
meta = {
description = "Enlightenment, the window manager";
longDescription = ''

View file

@ -1,4 +1,5 @@
{ stdenv, fetchurl, pkgconfig, eina, freetype }:
{ stdenv, fetchurl, pkgconfig, freetype, fontconfig, libpng, libjpeg
, libX11, libXext, eina, eet }:
stdenv.mkDerivation rec {
name = "evas-${version}";
version = "1.0.1";
@ -6,7 +7,9 @@ stdenv.mkDerivation rec {
url = "http://download.enlightenment.org/releases/${name}.tar.gz";
sha256 = "0xkwyvxy32dwja0i3j8r8bzlybjwlrgmrhcri1bscp3aaj75x2rx";
};
buildInputs = [ pkgconfig eina freetype ];
buildInputs = [ pkgconfig freetype fontconfig libpng libjpeg
libX11 libXext eina eet
];
meta = {
description = "Enlightenment's canvas and scenegraph rendering library";
longDescription = ''