aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix
blob: 645d05afc2bec9d2b693fe0a9e1888f76349cfdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, lib, cmake, pkgconfig }:

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

  patches = [
    ./nix-lib-path.patch
  ];

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

  propagatedBuildInputs = [ cmake pkgconfig ];

  setupHook = ./setup-hook.sh;

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