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;
|
inherit developerBuild decryptSslTraffic;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
qtcharts = callPackage ./qtcharts.nix {};
|
||||||
qtconnectivity = callPackage ./qtconnectivity.nix {};
|
qtconnectivity = callPackage ./qtconnectivity.nix {};
|
||||||
qtdeclarative = callPackage ./qtdeclarative {};
|
qtdeclarative = callPackage ./qtdeclarative {};
|
||||||
qtdoc = callPackage ./qtdoc.nix {};
|
qtdoc = callPackage ./qtdoc.nix {};
|
||||||
@ -128,10 +129,10 @@ let
|
|||||||
|
|
||||||
env = callPackage ../qt-env.nix {};
|
env = callPackage ../qt-env.nix {};
|
||||||
full = env "qt-${qtbase.version}" ([
|
full = env "qt-${qtbase.version}" ([
|
||||||
qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
|
||||||
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
|
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
|
||||||
qtsensors qtserialport qtsvg qttools qttranslations
|
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
|
||||||
qtwebsockets qtx11extras qtxmlpatterns
|
qtx11extras qtxmlpatterns
|
||||||
] ++ optional (!stdenv.isDarwin) qtwayland
|
] ++ optional (!stdenv.isDarwin) qtwayland
|
||||||
++ optional (stdenv.isDarwin) qtmacextras);
|
++ 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