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