summary refs log tree commit diff
path: root/pkgs/desktops/e17/evas/default.nix
blob: c271caa980d690eb11d5644040a18b39e725bac3 (plain) (blame)
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, freetype, fontconfig, libpng, libjpeg
, libX11, libXext, eina, eet }:
stdenv.mkDerivation rec {
  name = "evas-${version}";
  version = "1.7.5";
  src = fetchurl {
    url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
    sha256 = "0x3k89q2wxgxjsbhdf4qws7jgpjl7rpqji98ca3nf25jf2lm1cvh";
  };
  buildInputs = [ pkgconfig freetype fontconfig libpng libjpeg
                  libX11 libXext eina eet
                ];
  meta = {
    description = "Enlightenment's canvas and scenegraph rendering library";
    longDescription = ''
      Enlightenment's Evas is a clean display canvas API that
      implements a scene graph, not an immediate-mode rendering
      target, is cross-platform, for several target display systems
      that can draw anti-aliased text, smooth super and sub-sampled
      scaled images, alpha-blend objects and much more.
    '';
    homepage = http://enlightenment.org/;
    license = stdenv.lib.licenses.bsd2;  # not sure
  };
}