Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / kde / kdevelop / kdevelop-pg-qt.nix
blob468e264915c811f592702f50d22ec1f00931c9ff
1 { lib, stdenv, fetchurl, cmake, pkg-config, extra-cmake-modules, qtbase }:
3 stdenv.mkDerivation rec {
4   pname = "kdevelop-pg-qt";
5   version = "2.2.2";
7   src = fetchurl {
8     url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
9     sha256 = "sha256-PVZgTEefjwSuMqUj7pHzB4xxcRfQ3rOelz4iSUy7ZfE=";
10   };
12   nativeBuildInputs = [ cmake pkg-config extra-cmake-modules ];
14   buildInputs = [ qtbase ];
16   dontWrapQtApps = true;
18   meta = with lib; {
19     maintainers = [ maintainers.ambrop72 ];
20     platforms = platforms.linux;
21     description = "Parser-generator from KDevplatform";
22     longDescription = ''
23       KDevelop-PG-Qt is the parser-generator from KDevplatform.
24       It is used for some KDevelop-languagesupport-plugins (Ruby, PHP, CSS...).
25     '';
26     homepage = "https://www.kdevelop.org";
27     license = with lib.licenses; [ lgpl2Plus ];
28   };