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

qtModule {
  pname = "qtquick3d";
  propagatedBuildInputs = [ qtbase qtdeclarative ];
  buildInputs = [ openssl ];
}