pim-data-exporter: init at 17.08.1
* Add pim-data-exporter * pim-data-exporter: fix indentation
This commit is contained in:
parent
83f0659365
commit
b2924389ac
2 changed files with 23 additions and 0 deletions
|
@ -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 {};
|
||||
|
|
22
pkgs/applications/kde/pim-data-exporter.nix
Normal file
22
pkgs/applications/kde/pim-data-exporter.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue