2022-02-25 20:57:42 +00:00
|
|
|
{ stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }:
|
2019-02-15 02:25:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-18 03:18:03 +01:00
|
|
|
pname = "kdev-php";
|
2021-02-04 16:07:52 +00:00
|
|
|
version = "5.6.2";
|
2019-02-15 02:25:23 +00:00
|
|
|
|
2022-02-25 20:57:42 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kde/stable/kdevelop/${version}/src/${pname}-${version}.tar.xz";
|
|
|
|
hash = "sha256-8Qg9rsK4x1LeGgRB0Pn3InSx4tKccjAF7Xjc+Lpxfgw=";
|
2019-02-15 02:25:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
|
|
|
buildInputs = [ kdevelop-pg-qt threadweaver ktexteditor kdevelop-unwrapped ];
|
|
|
|
|
2021-01-12 11:50:23 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2019-02-15 02:25:23 +00:00
|
|
|
meta = with lib; {
|
|
|
|
maintainers = [ maintainers.aanderse ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
description = "PHP support for KDevelop";
|
2019-07-18 03:18:03 +01:00
|
|
|
homepage = "https://www.kdevelop.org";
|
2019-02-15 02:25:23 +00:00
|
|
|
license = [ licenses.gpl2 ];
|
|
|
|
};
|
|
|
|
}
|