1{
2 lib,
3 mkKdeDerivation,
4 fetchurl,
5 bison,
6 flex,
7}:
8mkKdeDerivation rec {
9 pname = "kdevelop-pg-qt";
10 version = "2.4.0";
11
12 # Breaks with split -dev
13 outputs = [ "out" ];
14
15 src = fetchurl {
16 url = "mirror://kde/stable/kdevelop-pg-qt/${version}/src/kdevelop-pg-qt-${version}.tar.xz";
17 hash = "sha256-rL62HIL116ot3PoY477l4lWRBpcL1tFG1GyV+NAnu4Y=";
18 };
19
20 extraNativeBuildInputs = [
21 bison
22 flex
23 ];
24
25 meta.license = with lib.licenses; [
26 bsd3
27 gpl2Plus
28 gpl3Plus
29 lgpl2Only
30 lgpl2Plus
31 mit
32 ];
33}