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

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