lol
1{ mkDerivation, lib, cmake, pkg-config }:
2
3mkDerivation {
4 name = "extra-cmake-modules";
5
6 patches = [
7 ./nix-lib-path.patch
8 ];
9
10 outputs = [ "out" ]; # this package has no runtime components
11
12 propagatedBuildInputs = [ cmake pkg-config ];
13
14 setupHook = ./setup-hook.sh;
15
16 meta = with lib; {
17 platforms = platforms.linux ++ platforms.darwin;
18 homepage = "http://www.kde.org";
19 license = licenses.bsd2;
20 };
21}