mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
23 lines
774 B
Nix
23 lines
774 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
akonadi, kcmutils, kcrash, kdbusaddons, kidentitymanagement, kldap,
|
|
kmailtransport, knewstuff, knotifications, knotifyconfig, kparts, kross, ktexteditor,
|
|
kwallet, libkdepim, libkleo, pimcommon, qttools,
|
|
karchive, mailcommon, messagelib
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "pim-data-exporter";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
akonadi kcmutils kcrash kdbusaddons kidentitymanagement kldap kmailtransport
|
|
knewstuff knotifications knotifyconfig kparts kross ktexteditor kwallet libkdepim
|
|
libkleo pimcommon qttools karchive mailcommon messagelib
|
|
];
|
|
}
|