mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
62a4d12769
Also, use python 3.9 to build kdev-python plugin, broken on python 3.10.
18 lines
544 B
Nix
18 lines
544 B
Nix
{ mkDerivation, lib, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }:
|
|
|
|
mkDerivation rec {
|
|
pname = "kdev-php";
|
|
|
|
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 ];
|
|
};
|
|
}
|