summary refs log tree commit diff
path: root/pkgs/applications/kde/kqtquickcharts.nix
blob: 669a38e37ca639c8e25bb58ccd8da5e11307d596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  extra-cmake-modules,
  qtbase, qtdeclarative,
}:

mkDerivation {
  pname = "kqtquickcharts";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ qtbase qtdeclarative ];
}