ffcac187e8
I patched properly their own copy of cmake findqt4 module, the same way as we had to do in the cmake expression. The findqt4 patch we have is already filled in the cmake buglist, but it seems it is still not solved in in cmake 2.8.0 svn path=/nixpkgs/trunk/; revision=19960
24 lines
924 B
Nix
24 lines
924 B
Nix
{ stdenv, fetchurl, cmake, lib, perl, qt4, exiv2, lcms, saneBackends, libgphoto2
|
|
, libspectre, poppler, djvulibre, chmlib, shared_mime_info, libXxf86vm
|
|
, kdelibs, automoc4, phonon, strigi, qimageblitz, soprano, qca2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdegraphics-4.3.4";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.3.4/src/kdegraphics-4.3.4.tar.bz2;
|
|
sha1 = "bb32171b0d562d5698d4f0526be2b069e99f7448";
|
|
};
|
|
buildInputs = [ cmake perl qt4 exiv2 lcms saneBackends libgphoto2 libspectre poppler chmlib
|
|
shared_mime_info stdenv.gcc.libc libXxf86vm
|
|
kdelibs automoc4 phonon strigi qimageblitz soprano qca2 ];
|
|
meta = {
|
|
description = "KDE graphics utilities";
|
|
longDescription = ''
|
|
Contains various graphics utilities such as the Gwenview image viewer and
|
|
Okular a document reader.
|
|
'';
|
|
license = "GPL";
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|