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

mkDerivation {
  pname = "kitemviews";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qttools ];
  propagatedBuildInputs = [ qtbase ];
  outputs = [ "out" "dev" ];
}