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

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

  setupHook = ./setup-hook.sh;

  # 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 ];
  };
}