summary refs log blame commit diff
path: root/pkgs/development/libraries/kde-frameworks/kcalendarcore.nix
blob: e0b6c5313bb987fd7941a17c5ce9d40201382623 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                 
{
  mkDerivation,
  lib,
  extra-cmake-modules,
  libical
}:

mkDerivation {
  name = "kcalendarcore";
  meta = {
    maintainers = [ lib.maintainers.nyanloutre ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ libical ];
  outputs = [ "out" "dev" ];
}