summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kcalendarcore.nix
blob: f4f2b05ad7367373960138eb87248ebee97bb29d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  mkDerivation,
  extra-cmake-modules,
  libical,
  qtbase
}:

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