about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/purpose.nix
blob: 7e4d002e2a1e003af67e90f345142feaad950578 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  mkDerivation, extra-cmake-modules, qtbase
, qtdeclarative, kconfig, kcoreaddons, ki18n, kio, kirigami2
, fetchpatch
}:

mkDerivation {
  name = "purpose";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    qtbase qtdeclarative kconfig kcoreaddons
    ki18n kio kirigami2
  ];
}