about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-6/modules/qtgraphs.nix
blob: 5cafb8d8d7fde505463754cc01d93594ca8b16bd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ qtModule
, qtbase
, qtdeclarative
, qtquick3d
, qtquicktimeline
}:

qtModule {
  pname = "qtgraphs";
  propagatedBuildInputs = [
    qtbase
    qtdeclarative
    qtquick3d
    qtquicktimeline
  ];
}