2017-05-15 10:05:35 -07:00
|
|
|
{ mkDerivation, lib, copyPathsToStore, cmake, pkgconfig }:
|
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";
|
|
|
|
|
|
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
|
|
|
|
|
|
outputs = [ "out" ]; # this package has no runtime components
|
|
|
|
|
2017-08-14 13:39:03 -07:00
|
|
|
propagatedBuildInputs = [ cmake pkgconfig ];
|
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;
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://www.kde.org;
|
2017-02-26 04:49:15 -08:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.ttuegel ];
|
|
|
|
};
|
2016-04-21 08:32:21 -07:00
|
|
|
}
|