lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 32 lines 927 B view raw
1{ stdenv, fetchurl, cmake, pkgconfig, extra-cmake-modules, qtbase }: 2 3let 4 pname = "kdevelop-pg-qt"; 5 version = "2.0"; 6 dirVersion = "2.0.0"; 7 8in 9stdenv.mkDerivation rec { 10 name = "${pname}-${version}"; 11 12 src = fetchurl { 13 url = "mirror://kde/stable/${pname}/${dirVersion}/src/${name}.tar.xz"; 14 sha256 = "2f778d324b7c0962e8bb5f62dd2643bac1a6f3ac971d145b6aace7cd61878993"; 15 }; 16 17 nativeBuildInputs = [ cmake pkgconfig extra-cmake-modules ]; 18 19 buildInputs = [ qtbase ]; 20 21 meta = with stdenv.lib; { 22 maintainers = [ maintainers.ambrop72 ]; 23 platforms = platforms.linux; 24 description = "Parser-generator from KDevplatform"; 25 longDescription = '' 26 KDevelop-PG-Qt is the parser-generator from KDevplatform. 27 It is used for some KDevelop-languagesupport-plugins (Ruby, PHP, CSS...). 28 ''; 29 homepage = https://www.kdevelop.org; 30 license = with stdenv.lib.licenses; [ lgpl2Plus ]; 31 }; 32}