a3fe61586c
* Removed the KDE version number from all expressions except the top-level default.nix. This makes it easier to upgrade. * Deleted the old l10n versions since there doesn't seem to be a good reason to keep them around. * Don't use replaceChars (slow!) but do the name sanitization in l10n-manifest.sh. svn path=/nixpkgs/trunk/; revision=25760
21 lines
719 B
Nix
21 lines
719 B
Nix
{ kde, cmake, lib, perl, qt4, exiv2, lcms, saneBackends, libgphoto2
|
|
, libspectre, popplerQt4, djvulibre, chmlib, shared_mime_info, libXxf86vm
|
|
, kdelibs, automoc4, strigi, qimageblitz, soprano, qca2, ebook_tools }:
|
|
|
|
kde.package {
|
|
|
|
buildInputs = [ cmake perl qt4 exiv2 lcms saneBackends libgphoto2 libspectre
|
|
(popplerQt4.override { inherit qt4; }) chmlib shared_mime_info libXxf86vm
|
|
kdelibs automoc4 strigi qimageblitz soprano qca2 djvulibre ebook_tools ];
|
|
|
|
meta = {
|
|
description = "KDE graphics utilities";
|
|
longDescription = ''
|
|
Contains various graphics utilities such as Gwenview image viewer and
|
|
Okular document reader.
|
|
'';
|
|
license = "GPL";
|
|
kde.name = "kdegraphics";
|
|
};
|
|
}
|