Adding digikam and kipi-plugins for kde4.
svn path=/nixpkgs/trunk/; revision=19488
This commit is contained in:
@@ -218,6 +218,12 @@ pkgs.recurseIntoAttrs (rec {
|
||||
inherit automoc4 phonon strigi soprano qca2;
|
||||
};
|
||||
|
||||
digikam = import ./extragear/digikam {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 lcms jasper libgphoto2 gettext;
|
||||
inherit kdelibs kdepimlibs kdegraphics;
|
||||
inherit automoc4 phonon qimageblitz qca2 eigen;
|
||||
};
|
||||
|
||||
filelight = import ./extragear/filelight {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl;
|
||||
inherit kdelibs kdebase_workspace;
|
||||
@@ -229,6 +235,12 @@ pkgs.recurseIntoAttrs (rec {
|
||||
inherit kdelibs;
|
||||
inherit automoc4 phonon;
|
||||
};
|
||||
|
||||
kipiplugins = import ./extragear/kipi-plugins {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 libxml2 libxslt gettext;
|
||||
inherit kdelibs kdepimlibs kdegraphics;
|
||||
inherit automoc4 phonon qimageblitz qca2;
|
||||
};
|
||||
|
||||
kmplayer = import ./extragear/kmplayer {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl gettext dbus_glib;
|
||||
|
||||
23
pkgs/desktops/kde-4.3/extragear/kipi-plugins/default.nix
Normal file
23
pkgs/desktops/kde-4.3/extragear/kipi-plugins/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, lib, cmake, qt4, kdelibs, automoc4, phonon, qimageblitz, qca2,
|
||||
kdegraphics, kdepimlibs, libxml2, libxslt, gettext}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kipi-plugins-0.9.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/kipi/kipi-plugins-0.9.0.tar.bz2;
|
||||
sha256 = "0wx1r607q8i4v55k8qjzz7wn8rfd86nniq3h3s7dgnddq7x17fqn";
|
||||
};
|
||||
|
||||
includeAllQtDirs=true;
|
||||
buildInputs = [ cmake qt4 kdelibs kdegraphics automoc4 phonon qimageblitz qca2 kdepimlibs
|
||||
libxml2 libxslt gettext ];
|
||||
CMAKE_PREFIX_PATH = kdepimlibs;
|
||||
cmakeFlags = [ "-DGETTEXT_INCLUDE_DIR=${gettext}/include" ];
|
||||
meta = {
|
||||
description = "Photo Management Program";
|
||||
license = "GPL";
|
||||
homepage = http://www.koffice.org;
|
||||
maintainers = [ lib.maintainers.viric ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user