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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
788 B
Nix
Raw Normal View History

2017-09-09 07:33:41 +00:00
{
mkDerivation, lib, fetchurl,
extra-cmake-modules,
2022-04-21 16:01:36 +00:00
qtdeclarative, qtwebkit, kconfig, kcoreaddons, kwidgetsaddons, kguiaddons, kproperty, marble, python3
2017-09-09 07:33:41 +00:00
}:
mkDerivation rec {
pname = "kreport";
2019-04-22 19:42:02 +00:00
version = "3.2.0";
2017-09-09 07:33:41 +00:00
src = fetchurl {
url = "mirror://kde/stable/${pname}/src/${pname}-${version}.tar.xz";
2019-04-22 19:42:02 +00:00
sha256 = "1mycsvkz5rphi9df2i4ch4ykvprd4m76acsdzs3zis2ljrqnsw92";
2017-09-09 07:33:41 +00:00
};
nativeBuildInputs = [ extra-cmake-modules ];
2022-04-21 16:01:36 +00:00
buildInputs = [ qtdeclarative qtwebkit kconfig kcoreaddons kwidgetsaddons kguiaddons kproperty marble python3 ];
2017-09-09 07:33:41 +00:00
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 ];
};
}