summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/kde-frameworks/kirigami2.nix
blob: 54ed41bd834a802d4366f99eeb5170f321786690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  qtbase,
  qtquickcontrols2,
  qtgraphicaleffects,
  qttools,
}:

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