summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.14/extra-cmake-modules/default.nix
blob: 4d669b72a8963398c698e213f70836f379c19c31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ kdeFramework, lib, stdenv, cmake, pkgconfig, qttools }:

kdeFramework {
  name = "extra-cmake-modules";
  setupHook = ./setup-hook.sh;
  patches = [ ./0001-extra-cmake-modules-paths.patch ];

  # It is OK to propagate these inputs as long as
  # extra-cmake-modules is never a propagated input
  # of some other derivation.
  propagatedNativeBuildInputs = [ cmake pkgconfig qttools ];

  meta = {
    license = stdenv.lib.licenses.bsd2;
    maintainers = [ lib.maintainers.ttuegel ];
  };
}