2021-01-18 22:50:56 -08:00
|
|
|
{ mkDerivation, lib, cmake, pkg-config }:
|
2016-04-21 08:32:21 -07:00
|
|
|
|
2017-05-15 10:05:35 -07:00
|
|
|
mkDerivation {
|
2017-02-26 04:49:15 -08:00
|
|
|
name = "extra-cmake-modules";
|
|
|
|
|
2020-08-25 02:43:59 -07:00
|
|
|
patches = [
|
|
|
|
./nix-lib-path.patch
|
|
|
|
];
|
2017-02-26 04:49:15 -08:00
|
|
|
|
|
|
|
outputs = [ "out" ]; # this package has no runtime components
|
|
|
|
|
2021-01-18 22:50:56 -08:00
|
|
|
propagatedBuildInputs = [ cmake pkg-config ];
|
2017-02-26 04:49:15 -08:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2017-04-20 14:41:49 -07:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://www.kde.org";
|
2017-02-26 04:49:15 -08:00
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
2016-04-21 08:32:21 -07:00
|
|
|
}
|