summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kholidays.nix
blob: 2ede69e74953dfa888d54c945fa4eb7a841e6894 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 
                    







                                                       
                                                  




                                                        
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  qtbase, qtdeclarative, qttools,
}:

mkDerivation {
  name = "kholidays";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = with lib.maintainers; [ bkchr ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ qtbase qtdeclarative qttools ];
  outputs = [ "out" "dev" ];
}