summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kde-frameworks/threadweaver.nix
blob: d8593d70ca38dc6e56e34fe0cf3578b7108aecb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  qtbase,
}:

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