forked from mirrors/nixpkgs
Adding the digikam I forgot before. Enabling in it and kipi-plugins 'platforms' for hydra
to build them. svn path=/nixpkgs/trunk/; revision=19490
This commit is contained in:
parent
063ef1925d
commit
1743ba3ba8
24
pkgs/desktops/kde-4.3/extragear/digikam/default.nix
Normal file
24
pkgs/desktops/kde-4.3/extragear/digikam/default.nix
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -19,5 +19,6 @@ stdenv.mkDerivation {
|
||||||
license = "GPL";
|
license = "GPL";
|
||||||
homepage = http://www.koffice.org;
|
homepage = http://www.koffice.org;
|
||||||
maintainers = [ lib.maintainers.viric ];
|
maintainers = [ lib.maintainers.viric ];
|
||||||
|
platforms = with lib.platforms; linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue