mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
7b52754edb
This is a hack and should be removed once upstream fixes this.
21 lines
548 B
Nix
21 lines
548 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
kcoreaddons, kio, kmime, cyrus_sasl
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ksmtp";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ kcoreaddons kio kmime ];
|
|
propagatedBuildInputs = [ cyrus_sasl ];
|
|
postInstall = ''
|
|
# added as an include directory by cmake files and fails to compile if it's missing
|
|
mkdir -p "$out/include/KF5"
|
|
'';
|
|
}
|