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

kdeFramework {
  name = "extra-cmake-modules";

  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);

  outputs = [ "out" ];  # this package has no runtime components
  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 = with lib; {
    license = licenses.bsd2;
    maintainers = [ maintainers.ttuegel ];
  };
}