1caf8454db
kdev-php: 5.6.1 -> 5.6.2
25 lines
741 B
Nix
25 lines
741 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 = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz";
|
|
sha256 = "sha256-P7u/KIf/1YkJ2uWsuVThILP87vaYSbHpx5CtnSR3YbU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|