1{
2 mkDerivation, lib, fetchurl,
3 extra-cmake-modules,
4 qtdeclarative, qtwebkit, kconfig, kcoreaddons, kwidgetsaddons, kguiaddons, kproperty, marble, python3
5}:
6
7mkDerivation rec {
8 pname = "kreport";
9 version = "3.2.0";
10
11 src = fetchurl {
12 url = "mirror://kde/stable/${pname}/src/${pname}-${version}.tar.xz";
13 sha256 = "1mycsvkz5rphi9df2i4ch4ykvprd4m76acsdzs3zis2ljrqnsw92";
14 };
15
16 nativeBuildInputs = [ extra-cmake-modules ];
17
18 buildInputs = [ qtdeclarative qtwebkit kconfig kcoreaddons kwidgetsaddons kguiaddons kproperty marble python3 ];
19
20 meta = with lib; {
21 description = "A framework for creation and generation of reports in multiple formats";
22 license = licenses.lgpl2;
23 platforms = platforms.linux;
24 maintainers = with maintainers; [ zraexy ];
25 };
26}