1{
2 mkDerivation,
3 lib,
4 cmake,
5 extra-cmake-modules,
6 threadweaver,
7 ktexteditor,
8 kdevelop-unwrapped,
9 kdevelop-pg-qt,
10}:
11
12mkDerivation {
13 pname = "kdev-php";
14
15 nativeBuildInputs = [
16 cmake
17 extra-cmake-modules
18 ];
19 buildInputs = [
20 kdevelop-pg-qt
21 threadweaver
22 ktexteditor
23 kdevelop-unwrapped
24 ];
25
26 dontWrapQtApps = true;
27
28 meta = with lib; {
29 maintainers = [ maintainers.aanderse ];
30 platforms = platforms.linux;
31 description = "PHP support for KDevelop";
32 homepage = "https://www.kdevelop.org";
33 license = [ licenses.gpl2 ];
34 };
35}