qt6.qtgraphs: init at 6.6.0
This commit is contained in:
parent
539cb44879
commit
998fa6daa5
2 changed files with 18 additions and 0 deletions
|
@ -65,6 +65,7 @@ let
|
|||
qtdatavis3d
|
||||
qtdeclarative
|
||||
qtdoc
|
||||
qtgraphs
|
||||
qtgrpc
|
||||
qthttpserver
|
||||
qtimageformats
|
||||
|
@ -105,6 +106,7 @@ let
|
|||
qtdatavis3d = callPackage ./modules/qtdatavis3d.nix { };
|
||||
qtdeclarative = callPackage ./modules/qtdeclarative.nix { };
|
||||
qtdoc = callPackage ./modules/qtdoc.nix { };
|
||||
qtgraphs = callPackage ./modules/qtgraphs.nix { };
|
||||
qtgrpc = callPackage ./modules/qtgrpc.nix { };
|
||||
qthttpserver = callPackage ./modules/qthttpserver.nix { };
|
||||
qtimageformats = callPackage ./modules/qtimageformats.nix { };
|
||||
|
|
16
pkgs/development/libraries/qt-6/modules/qtgraphs.nix
Normal file
16
pkgs/development/libraries/qt-6/modules/qtgraphs.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ qtModule
|
||||
, qtbase
|
||||
, qtdeclarative
|
||||
, qtquick3d
|
||||
, qtquicktimeline
|
||||
}:
|
||||
|
||||
qtModule {
|
||||
pname = "qtgraphs";
|
||||
qtInputs = [
|
||||
qtbase
|
||||
qtdeclarative
|
||||
qtquick3d
|
||||
qtquicktimeline
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue