2022-06-23 01:40:55 +02:00
|
|
|
{ mkDerivation, lib, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }:
|
2019-02-15 03:25:23 +01:00
|
|
|
|
2022-06-23 01:40:55 +02:00
|
|
|
mkDerivation rec {
|
2019-07-18 04:18:03 +02:00
|
|
|
pname = "kdev-php";
|
2019-02-15 03:25:23 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
|
|
|
buildInputs = [ kdevelop-pg-qt threadweaver ktexteditor kdevelop-unwrapped ];
|
|
|
|
|
2021-01-12 12:50:23 +01:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2019-02-15 03:25:23 +01:00
|
|
|
meta = with lib; {
|
|
|
|
maintainers = [ maintainers.aanderse ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
description = "PHP support for KDevelop";
|
2019-07-18 04:18:03 +02:00
|
|
|
homepage = "https://www.kdevelop.org";
|
2019-02-15 03:25:23 +01:00
|
|
|
license = [ licenses.gpl2 ];
|
|
|
|
};
|
|
|
|
}
|