d0b30155a5
we should probably make this configurable, but for now enabling (and testing) at least 1 backend is better than none, as emotion without backends won't anything at all
20 lines
768 B
Nix
20 lines
768 B
Nix
{ stdenv, fetchurl, pkgconfig, ecore, evas, eet, eina, edje, vlc }:
|
|
stdenv.mkDerivation rec {
|
|
name = "emotion-${version}";
|
|
version = "1.7.5";
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
|
|
sha256 = "1sfw8kpj2fcqymzd6q7p51xxib1n2arvjl1hnwhqkvwhlsq2b4sw";
|
|
};
|
|
buildInputs = [ pkgconfig ecore evas eet eina edje vlc ];
|
|
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;
|
|
};
|
|
}
|