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


                                 
                                     


              
                  





                                                        
                                     


                            
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  kcalendarcore, kcalutils, kcontacts
}:

mkDerivation {
  pname = "ktnef";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    kcalendarcore kcalutils kcontacts
  ];
  outputs = [ "out" "dev" ];
}