Merge pull request #27013 from expipiplus1/qt-charts
qt5: Add qtcharts submodule
This commit is contained in:
commit
ca6f1591ba
@ -99,6 +99,7 @@ let
|
||||
inherit developerBuild decryptSslTraffic;
|
||||
};
|
||||
|
||||
qtcharts = callPackage ./qtcharts.nix {};
|
||||
qtconnectivity = callPackage ./qtconnectivity.nix {};
|
||||
qtdeclarative = callPackage ./qtdeclarative {};
|
||||
qtdoc = callPackage ./qtdoc.nix {};
|
||||
@ -128,10 +129,10 @@ let
|
||||
|
||||
env = callPackage ../qt-env.nix {};
|
||||
full = env "qt-${qtbase.version}" ([
|
||||
qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
||||
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
||||
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
|
||||
qtsensors qtserialport qtsvg qttools qttranslations
|
||||
qtwebsockets qtx11extras qtxmlpatterns
|
||||
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
|
||||
qtx11extras qtxmlpatterns
|
||||
] ++ optional (!stdenv.isDarwin) qtwayland
|
||||
++ optional (stdenv.isDarwin) qtmacextras);
|
||||
|
||||
|
10
pkgs/development/libraries/qt-5/5.9/qtcharts.nix
Normal file
10
pkgs/development/libraries/qt-5/5.9/qtcharts.nix
Normal file
@ -0,0 +1,10 @@
|
||||
{ qtSubmodule, qtbase }:
|
||||
|
||||
qtSubmodule {
|
||||
name = "qtcharts";
|
||||
qtInputs = [ qtbase ];
|
||||
outputs = [ "out" "dev" "bin" ];
|
||||
postInstall = ''
|
||||
moveToOutput "$qtQmlPrefix" "$bin"
|
||||
'';
|
||||
}
|
Loading…
Reference in New Issue
Block a user