1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 12:59:25 +00:00
nixpkgs/pkgs/development/libraries/qt-5/5.9/qtcharts.nix

11 lines
216 B
Nix
Raw Normal View History

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