summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix
blob: b2e3a371e9654ec0e92521c4279362c650af2ad8 (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 }:

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

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

  outputs = [ "out" ];  # this package has no runtime components

  propagatedNativeBuildInputs = [ cmake pkgconfig ];

  setupHook = ./setup-hook.sh;

  meta = with lib; {
    platforms = lib.platforms.linux;
    homepage = "http://www.kde.org";
    license = licenses.bsd2;
    maintainers = [ maintainers.ttuegel ];
  };
}