summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.9/qtcharts.nix
blob: afc09e3eeb58861e3bd2712fec1cd0623c00764a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ qtSubmodule, qtbase, qtdeclarative }:

qtSubmodule {
  name = "qtcharts";
  qtInputs = [ qtbase qtdeclarative ];
  outputs = [ "bin" "dev" "out" ];
  postInstall = ''
    moveToOutput "$qtQmlPrefix" "$bin"
  '';
}