mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
23 lines
704 B
Nix
23 lines
704 B
Nix
|
{ kde, boost, gpgme, libassuan, libxslt, kdepimlibs, kdepim_runtime
|
||
|
, akonadi, shared_desktop_ontologies, cyrus_sasl, grantlee, prison
|
||
|
, nepomuk_core, nepomuk_widgets, dblatex }:
|
||
|
|
||
|
kde {
|
||
|
#todo: update grantlee to 0.3
|
||
|
buildInputs =
|
||
|
[ kdepimlibs boost akonadi shared_desktop_ontologies nepomuk_core nepomuk_widgets
|
||
|
libxslt cyrus_sasl gpgme libassuan grantlee prison dblatex
|
||
|
];
|
||
|
|
||
|
passthru.propagatedUserEnvPackages = [ akonadi kdepimlibs kdepim_runtime ];
|
||
|
|
||
|
meta = {
|
||
|
description = "KDE PIM tools";
|
||
|
longDescription = ''
|
||
|
Contains various personal information management tools for KDE, such as an organizer.
|
||
|
'';
|
||
|
license = "GPL";
|
||
|
homepage = http://pim.kde.org;
|
||
|
};
|
||
|
}
|