kdeApplications.kmailtransport: fix build

This commit is contained in:
gnidorah
2017-12-24 12:54:19 +03:00
parent a8ba8405d8
commit 7dc2db982c
4 changed files with 45 additions and 2 deletions
+17
View File
@@ -0,0 +1,17 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
kcoreaddons, kio, kmime, cyrus_sasl
}:
mkDerivation {
name = "ksmtp";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ kcoreaddons kio kmime ];
propagatedBuildInputs = [ cyrus_sasl ];
patches = [ ./0001-Use-KDE_INSTALL_TARGETS_DEFAULT_ARGS-when-installing.patch ];
}