summary refs log tree commit diff
path: root/pkgs/applications/kde/kimap.nix
blob: e93804bd885dadfe7ccf333f8927e551f7361eb4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  cyrus_sasl, kcoreaddons, ki18n, kio, kmime
}:

mkDerivation {
  pname = "kimap";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ ki18n kio ];
  propagatedBuildInputs = [ cyrus_sasl kcoreaddons kmime ];
  outputs = [ "out" "dev" ];
}