summary refs log blame commit diff
path: root/pkgs/applications/kde/kmbox.nix
blob: c1348edf3f6fb7725685a1b30fedfe2f8476f375 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


                                 
                        








                                                        
                                         

                            
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  kmime, qtbase, kcodecs
}:

mkDerivation {
  name = "kmbox";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ kmime qtbase kcodecs ];
  outputs = [ "out" "dev" ];
}