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