Skip to content

Commit

Permalink
pim-data-exporter: init at 17.08.1
Browse files Browse the repository at this point in the history
* Add pim-data-exporter

* pim-data-exporter: fix indentation
  • Loading branch information
JohnMH authored and Mic92 committed Sep 22, 2017
1 parent 83f0659 commit b292438
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions pkgs/applications/kde/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down
22 changes: 22 additions & 0 deletions pkgs/applications/kde/pim-data-exporter.nix
Original file line number Diff line number Diff line change
@@ -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
];
}

0 comments on commit b292438

Please sign in to comment.