mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 11:13:30 +00:00
qt6.qtgraphs: init at 6.6.0
This commit is contained in:
parent
539cb44879
commit
998fa6daa5
@ -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 New Issue
Block a user