nixpkgs/pkgs/applications/editors/kdevelop5/kdevelop-pg-qt.nix
R. RyanTM 5309a540a1 kdevelop-pg-qt: 2.1.0 -> 2.2.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/kdevelop-pg-qt/versions
2019-06-01 17:45:13 -07:00

32 lines
890 B
Nix

{ stdenv, fetchurl, cmake, pkgconfig, extra-cmake-modules, qtbase }:
let
pname = "kdevelop-pg-qt";
version = "2.2.0";
in
stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "01a4y98hf8zlrdf5l8f4izqh4n3j3xs93j8ny5a3f4z50nb6hxq7";
};
nativeBuildInputs = [ cmake pkgconfig extra-cmake-modules ];
buildInputs = [ qtbase ];
meta = with stdenv.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 stdenv.lib.licenses; [ lgpl2Plus ];
};
}