2010-10-05 19:43:57 +02:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, kdelibs, automoc4, phonon, qimageblitz, qca2,
|
2010-10-05 19:44:17 +02:00
|
|
|
kdegraphics, kdepimlibs, libxml2, libxslt, gettext, opencv, libgpod, gtk }:
|
2010-10-05 19:43:57 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "kipi-plugins-1.4.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/kipi/${name}.tar.bz2";
|
|
|
|
sha256 = "1ybxhp4rs6c5xlrs0q765vrx4mvw4k0kq6n42dyk3kxvmcb9iq34";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cmake qt4 kdelibs kdegraphics automoc4 phonon qimageblitz qca2 kdepimlibs
|
2010-10-05 19:44:17 +02:00
|
|
|
libxml2 libxslt gettext opencv libgpod gtk ];
|
2010-10-05 19:43:57 +02:00
|
|
|
|
|
|
|
KDEDIRS = kdegraphics;
|
|
|
|
|
2010-10-05 19:44:17 +02:00
|
|
|
patches = [ ./find-gdk.patch ];
|
|
|
|
|
2010-10-05 19:43:57 +02:00
|
|
|
meta = {
|
|
|
|
description = "Photo Management Program";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.kipi-plugins.org;
|
|
|
|
inherit (kdelibs.meta) platforms;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ viric urkud ];
|
|
|
|
};
|
|
|
|
}
|