summary refs log tree commit diff
path: root/pkgs/applications/kde/kqtquickcharts.nix
blob: 2b3dc5313d9a8c83e4873b80e75de57f040775a8 (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 {
  name = "kqtquickcharts";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ qtbase qtdeclarative ];
}