summaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/kde-frameworks/purpose.nix
blob: d9cdbdc74ba78066ebd15ce3eef6f4e59b32df60 (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
28
29
30
31
32
33
34
35
{
  mkDerivation,
  cmake,
  extra-cmake-modules,
  intltool,
  qtbase,
  accounts-qt,
  qtdeclarative,
  kconfig,
  kcoreaddons,
  ki18n,
  kio,
  kirigami2,
  signond,
}:

mkDerivation {
  pname = "purpose";
  nativeBuildInputs = [
    cmake
    extra-cmake-modules
    intltool
  ];
  buildInputs = [
    qtbase
    accounts-qt
    qtdeclarative
    kconfig
    kcoreaddons
    ki18n
    kio
    kirigami2
    signond
  ];
}