nixpkgs/pkgs/applications/editors/kdevelop5/kdevelop-pg-qt.nix

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

34 lines
907 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, pkg-config, extra-cmake-modules, qtbase }:
let
pname = "kdevelop-pg-qt";
2020-02-08 14:58:18 +00:00
version = "2.2.1";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
2021-01-01 13:46:40 +00:00
src = fetchurl {
2017-08-29 22:37:38 +00:00
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
2020-02-08 14:58:18 +00:00
sha256 = "0ay6m6j6zgrbcm48f14bass83bk4w5qnx76xihc05p69i9w32ff1";
};
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";
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 ];
};
}