From 1743ba3ba81a6a21e0febe3cb8db1e00665eabe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 16 Jan 2010 21:07:32 +0000 Subject: [PATCH] Adding the digikam I forgot before. Enabling in it and kipi-plugins 'platforms' for hydra to build them. svn path=/nixpkgs/trunk/; revision=19490 --- .../kde-4.3/extragear/digikam/default.nix | 24 +++++++++++++++++++ .../extragear/kipi-plugins/default.nix | 1 + 2 files changed, 25 insertions(+) create mode 100644 pkgs/desktops/kde-4.3/extragear/digikam/default.nix diff --git a/pkgs/desktops/kde-4.3/extragear/digikam/default.nix b/pkgs/desktops/kde-4.3/extragear/digikam/default.nix new file mode 100644 index 000000000000..abf78cd9c62c --- /dev/null +++ b/pkgs/desktops/kde-4.3/extragear/digikam/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, lib, cmake, qt4, kdelibs, automoc4, phonon, qimageblitz, qca2, eigen, +kdegraphics, lcms, jasper, libgphoto2, kdepimlibs, gettext}: + +stdenv.mkDerivation { + name = "digikam-1.0.0"; + + src = fetchurl { + url = mirror://sourceforge/digikam/digikam-1.0.0.tar.bz2; + sha256 = "0qblqyjn0vas8hyqn5s9rr401d93cagk53y3j8kch0mr0bk706bk"; + }; + + includeAllQtDirs=true; + buildInputs = [ cmake qt4 kdelibs kdegraphics automoc4 phonon qimageblitz qca2 eigen + lcms jasper libgphoto2 kdepimlibs 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 ]; + platforms = with lib.platforms; linux; + }; +} diff --git a/pkgs/desktops/kde-4.3/extragear/kipi-plugins/default.nix b/pkgs/desktops/kde-4.3/extragear/kipi-plugins/default.nix index c77a06e9b85f..e4930c1c704d 100644 --- a/pkgs/desktops/kde-4.3/extragear/kipi-plugins/default.nix +++ b/pkgs/desktops/kde-4.3/extragear/kipi-plugins/default.nix @@ -19,5 +19,6 @@ stdenv.mkDerivation { license = "GPL"; homepage = http://www.koffice.org; maintainers = [ lib.maintainers.viric ]; + platforms = with lib.platforms; linux; }; }