62a4d12769
Also, use python 3.9 to build kdev-python plugin, broken on python 3.10.
30 lines
879 B
Nix
30 lines
879 B
Nix
{ lib, stdenv, fetchurl, cmake, pkg-config, extra-cmake-modules, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "kdevelop-pg-qt";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
|
|
sha256 = "0ay6m6j6zgrbcm48f14bass83bk4w5qnx76xihc05p69i9w32ff1";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config extra-cmake-modules ];
|
|
|
|
buildInputs = [ qtbase ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
maintainers = [ maintainers.ambrop72 ];
|
|
platforms = platforms.linux;
|
|
description = "Parser-generator from KDevplatform";
|
|
longDescription = ''
|
|
KDevelop-PG-Qt is the parser-generator from KDevplatform.
|
|
It is used for some KDevelop-languagesupport-plugins (Ruby, PHP, CSS...).
|
|
'';
|
|
homepage = "https://www.kdevelop.org";
|
|
license = with lib.licenses; [ lgpl2Plus ];
|
|
};
|
|
}
|