pim-data-exporter: init at 17.08.1

* Add pim-data-exporter

* pim-data-exporter: fix indentation
This commit is contained in:
John M. Harris, Jr 2017-09-22 06:20:49 -04:00 committed by Jörg Thalheim
parent 83f0659365
commit b2924389ac
2 changed files with 23 additions and 0 deletions

View file

@ -145,6 +145,7 @@ let
okteta = callPackage ./okteta.nix {};
okular = callPackage ./okular.nix {};
pimcommon = callPackage ./pimcommon.nix {};
pim-data-exporter = callPackage ./pim-data-exporter.nix {};
pim-sieve-editor = callPackage ./pim-sieve-editor.nix {};
print-manager = callPackage ./print-manager.nix {};
spectacle = callPackage ./spectacle.nix {};

View file

@ -0,0 +1,22 @@
{
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, pim-data-exporter
}:
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
];
}