summary refs log blame commit diff
path: root/pkgs/applications/kde/kimap.nix
blob: b910328c2cadacb2afdf4273b4a85cb7678874ad (plain) (tree)
1
2
3
4
5
6
7
8
9


                                 
                                                         


              
                  
          
                                                                   



                                                        
                                                                       
                            



                                                                                       
 
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  cyrus_sasl, kcoreaddons, ki18n, kio, kmime, kitemmodels
}:

mkDerivation {
  pname = "kimap";
  meta = {
    license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ ki18n kio ];
  propagatedBuildInputs = [ cyrus_sasl kcoreaddons kmime kitemmodels ];
  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"
  '';
}