summary refs log tree commit diff
path: root/pkgs/desktops/e17/ethumb/default.nix
blob: 344abe1e3f12636eda392205cd7191e83a9d58a4 (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
{ stdenv, fetchurl, pkgconfig, eina, evas, ecore, edje, eet, e_dbus, emotion, libexif }:
stdenv.mkDerivation rec {
  name = "ethumb-${version}";
  version = "1.7.5";
  src = fetchurl {
    url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
    sha256 = "0prka3knz8p2n46dfrzgwn55khhhrhjny4vvnzkjcwmhvz7kgc9l";
  };
  buildInputs = [ pkgconfig eina evas ecore edje eet emotion libexif ];
  propagatedBuildInputs = [ e_dbus libexif ];
  meta = {
    description = "A thumbnail generation library";
    longDescription = ''
      Ethumb - thumbnail generation library. Features:
      * create thumbnails with a predefined frame (possibly an edje frame);
      * have an option to create fdo-like thumbnails;
      * have a client/server utility;
      * TODO: make thumbnails from edje backgrounds, icons and themes;
    '';
    homepage = http://enlightenment.org/;
    license = stdenv.lib.licenses.lgpl21;
  };
}