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

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