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
16 lines
413 B
Nix
16 lines
413 B
Nix
{ kde, cmake, qt4, perl, boost, cyrus_sasl, gpgme, libical, openldap, shared_mime_info
|
|
, kdelibs, automoc4, akonadi, soprano}:
|
|
|
|
kde.package {
|
|
|
|
buildInputs = [ cmake automoc4 perl shared_mime_info ];
|
|
propagatedBuildInputs = [ qt4 boost cyrus_sasl gpgme libical openldap kdelibs
|
|
akonadi soprano ];
|
|
|
|
meta = {
|
|
description = "KDE PIM libraries";
|
|
license = "LGPL";
|
|
kde.name = "kdepimlibs";
|
|
};
|
|
}
|