25 lines
751 B
Nix
25 lines
751 B
Nix
{ stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kdev-php";
|
|
version = "5.6.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kdevelop/${version}/src/${pname}-${version}.tar.xz";
|
|
hash = "sha256-8Qg9rsK4x1LeGgRB0Pn3InSx4tKccjAF7Xjc+Lpxfgw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
|
buildInputs = [ kdevelop-pg-qt threadweaver ktexteditor kdevelop-unwrapped ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
maintainers = [ maintainers.aanderse ];
|
|
platforms = platforms.linux;
|
|
description = "PHP support for KDevelop";
|
|
homepage = "https://www.kdevelop.org";
|
|
license = [ licenses.gpl2 ];
|
|
};
|
|
}
|