e0ff817c40
I updated cmake to use CMAKE_PREFIX_PATH instead of CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH. There were some expressions in kde that required CMAKE_PREFIX_PATH, and now they are not anymore a special case. I updated most kde-4.4 files to point to kde-4.4.0 sources instead of 4.3.4 . svn path=/nixpkgs/trunk/; revision=19965
23 lines
938 B
Nix
23 lines
938 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.4.0";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.4.0/src/kdegraphics-4.4.0.tar.bz2;
|
|
sha256 = "0x978k6afzi28gkj9a22h91wjd3ar5wf7ricsq29x659nkp5cw9j";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|