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