summary refs log tree commit diff
path: root/pkgs/desktops/e17/emotion/default.nix
blob: 42790162171cfb30801cc7fbc26c5596e65f2348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, ecore, evas, eet, eina, edje }:
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 ];
  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;
  };
}