mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
22 lines
746 B
Nix
22 lines
746 B
Nix
|
{
|
||
|
mkDerivation, lib, kdepimTeam,
|
||
|
extra-cmake-modules, kdoctools, shared_mime_info,
|
||
|
akonadi, kcmutils, kcrash, kdbusaddons, kidentitymanagement, kldap,
|
||
|
kmailtransport, knewstuff, knotifications, knotifyconfig, kparts, kross, ktexteditor,
|
||
|
kwallet, libkdepim, libkleo, pimcommon, qttools,
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
name = "kmail-account-wizard";
|
||
|
meta = {
|
||
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
||
|
maintainers = kdepimTeam;
|
||
|
};
|
||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools shared_mime_info ];
|
||
|
buildInputs = [
|
||
|
akonadi kcmutils kcrash kdbusaddons kidentitymanagement kldap kmailtransport
|
||
|
knewstuff knotifications knotifyconfig kparts kross ktexteditor kwallet libkdepim
|
||
|
libkleo pimcommon qttools
|
||
|
];
|
||
|
}
|