summary refs log blame commit diff
path: root/pkgs/development/libraries/kreport/default.nix
blob: 46d55b1f550d3a7a61b4f87cd1e7cb5cc65919ec (plain) (tree)
1
2
3
4
5
6
7
8
9


                              
                                                                                                       



                    
                    

                  
                                                                        
                                                                    












                                                                                                                  
{
  mkDerivation, lib, fetchurl,
  extra-cmake-modules,
  qtdeclarative, qtwebkit, kconfig, kcoreaddons, kwidgetsaddons, kguiaddons, kproperty, marble, python2
}:

mkDerivation rec {
  pname = "kreport";
  version = "3.2.0";

  src = fetchurl {
    url = "mirror://kde/stable/${pname}/src/${pname}-${version}.tar.xz";
    sha256 = "1mycsvkz5rphi9df2i4ch4ykvprd4m76acsdzs3zis2ljrqnsw92";
  };

  nativeBuildInputs = [ extra-cmake-modules ];

  buildInputs = [ qtdeclarative qtwebkit kconfig kcoreaddons kwidgetsaddons kguiaddons kproperty marble python2 ];

  meta = with lib; {
    description = "A framework for creation and generation of reports in multiple formats";
    license = licenses.lgpl2;
    platforms = platforms.linux;
    maintainers = with maintainers; [ zraexy ];
  };
}