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