nixpkgs/pkgs/development/libraries/qt-5/5.9/qtcharts.nix

11 lines
187 B
Nix
Raw Normal View History

2017-07-01 06:48:18 -07:00
{ qtSubmodule, qtbase }:
qtSubmodule {
name = "qtcharts";
qtInputs = [ qtbase ];
outputs = [ "out" "dev" "bin" ];
postInstall = ''
moveToOutput "$qtQmlPrefix" "$bin"
'';
}