nixpkgs/pkgs/applications/kde/kdevelop/kdevelop-pg-qt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
910 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, pkg-config, extra-cmake-modules, qtbase }:
stdenv.mkDerivation rec {
pname = "kdevelop-pg-qt";
version = "2.2.2";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz";
sha256 = "sha256-PVZgTEefjwSuMqUj7pHzB4xxcRfQ3rOelz4iSUy7ZfE=";
};
nativeBuildInputs = [ cmake pkg-config extra-cmake-modules ];
2021-01-01 13:46:40 +00:00
buildInputs = [ qtbase ];
dontWrapQtApps = true;
meta = with lib; {
maintainers = [ maintainers.ambrop72 ];
platforms = platforms.linux;
description = "Parser-generator from KDevplatform";
mainProgram = "kdev-pg-qt";
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";
2021-01-15 13:21:58 +00:00
license = with lib.licenses; [ lgpl2Plus ];
};
}