nixpkgs/pkgs/development/libraries/kreport/default.nix

28 lines
808 B
Nix
Raw Normal View History

2017-09-09 09:33:41 +02:00
{
mkDerivation, lib, fetchurl,
extra-cmake-modules,
qtdeclarative, qtwebkit, kconfig, kcoreaddons, kwidgetsaddons, kguiaddons, kproperty, marble, python2
2017-09-09 09:33:41 +02:00
}:
mkDerivation rec {
pname = "kreport";
2018-04-25 03:37:46 +02:00
version = "3.1.0";
2017-09-09 09:33:41 +02:00
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://kde/stable/${pname}/src/${name}.tar.xz";
2018-04-25 03:37:46 +02:00
sha256 = "0v7krpfx0isij9wzwam28fqn039i4wcznbplvnvl6hsykdi8ar1v";
2017-09-09 09:33:41 +02:00
};
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 ];
};
}