2021-12-13 14:38:12 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, 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
|
|
|
|
2021-12-13 14:38:12 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KDE";
|
|
|
|
repo = "kdev-php";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-hEumH7M6yAuH+jPShOmbKjHmuPRg2djaVy9Xt28eK38=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|