e17/ethumb: add optional dependency on e_dbus
ethumb_client depends on it, but will fail (skip on installation) silently when not found
This commit is contained in:
parent
d0b30155a5
commit
6dcddbf3b5
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, eina, evas, ecore, edje, eet }:
|
{ stdenv, fetchurl, pkgconfig, eina, evas, ecore, edje, eet, e_dbus }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "ethumb-${version}";
|
name = "ethumb-${version}";
|
||||||
version = "1.7.5";
|
version = "1.7.5";
|
||||||
@ -7,6 +7,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0prka3knz8p2n46dfrzgwn55khhhrhjny4vvnzkjcwmhvz7kgc9l";
|
sha256 = "0prka3knz8p2n46dfrzgwn55khhhrhjny4vvnzkjcwmhvz7kgc9l";
|
||||||
};
|
};
|
||||||
buildInputs = [ pkgconfig eina evas ecore edje eet ];
|
buildInputs = [ pkgconfig eina evas ecore edje eet ];
|
||||||
|
propagatedBuildInputs = [ e_dbus ];
|
||||||
meta = {
|
meta = {
|
||||||
description = "A thumbnail generation library";
|
description = "A thumbnail generation library";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
|
|||||||
* create thumbnails with a predefined frame (possibly an edje frame);
|
* create thumbnails with a predefined frame (possibly an edje frame);
|
||||||
* have an option to create fdo-like thumbnails;
|
* have an option to create fdo-like thumbnails;
|
||||||
* have a client/server utility;
|
* have a client/server utility;
|
||||||
* TODO: make thumbnails from edje backgrounds, icons and themes;
|
* TODO: make thumbnails from edje backgrounds, icons and themes;
|
||||||
'';
|
'';
|
||||||
homepage = http://enlightenment.org/;
|
homepage = http://enlightenment.org/;
|
||||||
license = stdenv.lib.licenses.lgpl21;
|
license = stdenv.lib.licenses.lgpl21;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user