b6a1c9161b
kdev-php: 5.4.4 -> 5.4.5 kdev-python: 5.4.4 -> 5.4.5
23 lines
716 B
Nix
23 lines
716 B
Nix
{ stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kdev-php";
|
|
version = "5.4.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz";
|
|
sha256 = "12j0l2k6ii9ajp90lil3apk0xsz56cb549ighabik73a1w3c6ib6";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
|
buildInputs = [ kdevelop-pg-qt threadweaver ktexteditor kdevelop-unwrapped ];
|
|
|
|
meta = with lib; {
|
|
maintainers = [ maintainers.aanderse ];
|
|
platforms = platforms.linux;
|
|
description = "PHP support for KDevelop";
|
|
homepage = "https://www.kdevelop.org";
|
|
license = [ licenses.gpl2 ];
|
|
};
|
|
}
|