2013-03-31 22:19:29 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, ecore, evas, eet, eina, edje, vlc }:
|
2013-02-10 18:23:45 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "emotion-${version}";
|
|
|
|
version = "1.7.5";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
|
|
|
|
sha256 = "1sfw8kpj2fcqymzd6q7p51xxib1n2arvjl1hnwhqkvwhlsq2b4sw";
|
|
|
|
};
|
2013-03-31 22:19:29 +02:00
|
|
|
buildInputs = [ pkgconfig ecore evas eet eina edje vlc ];
|
2013-02-10 18:23:45 +01:00
|
|
|
meta = {
|
|
|
|
description = "A library to easily integrate media playback into EFL applications";
|
|
|
|
longDescription = ''
|
|
|
|
Emotion is a library to easily integrate media playback into EFL applications,
|
|
|
|
it will take care of using Ecore's main loop and video display is done using Evas.
|
|
|
|
'';
|
|
|
|
homepage = http://enlightenment.org/;
|
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
};
|
|
|
|
}
|