nixpkgs/pkgs/applications/kde/messagelib.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2017-05-09 23:35:06 +00:00
{
mkDerivation,
lib,
kdepimTeam,
extra-cmake-modules,
kdoctools,
akonadi,
akonadi-mime,
akonadi-notes,
akonadi-search,
gpgme,
grantlee,
2017-05-09 23:35:06 +00:00
grantleetheme,
karchive,
kcodecs,
kconfig,
kconfigwidgets,
kcontacts,
2021-01-31 15:03:32 +00:00
kiconthemes,
kidentitymanagement,
kio,
kjobwidgets,
kldap,
2017-05-09 23:35:06 +00:00
kmailtransport,
kmbox,
kmime,
kwindowsystem,
libgravatar,
libkdepim,
libkleo,
pimcommon,
qca-qt5,
qtwebengine,
syntax-highlighting,
2017-05-09 23:35:06 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "messagelib";
2017-05-09 23:35:06 +00:00
meta = {
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [
gpl2Plus
lgpl21Plus
fdl12Plus
];
2017-05-09 23:35:06 +00:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
2017-05-09 23:35:06 +00:00
buildInputs = [
akonadi-notes
akonadi-search
gpgme
grantlee
grantleetheme
karchive
kcodecs
2021-01-31 15:03:32 +00:00
kconfig
kconfigwidgets
kiconthemes
kio
kjobwidgets
kldap
kmailtransport
kmbox
kmime
kwindowsystem
libgravatar
libkdepim
qca-qt5
2017-05-09 23:35:06 +00:00
syntax-highlighting
];
propagatedBuildInputs = [
akonadi
akonadi-mime
kcontacts
kidentitymanagement
kmime
libkleo
pimcommon
qtwebengine
];
outputs = [
"out"
"dev"
];
postInstall = ''
# added as an include directory by cmake files and fails to compile if it's missing
mkdir -p "$dev/include/KF5"
'';
2017-05-09 23:35:06 +00:00
}