about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtdeclarative.nix
blob: 37be727298521520c12aee48aeaeb48e75691353 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ qtModule
, qtbase
, qtlanguageserver
, qtshadertools
, openssl
, python3
}:

qtModule {
  pname = "qtdeclarative";
  propagatedBuildInputs = [ qtbase qtlanguageserver qtshadertools openssl python3 ];
  patches = [
    # prevent headaches from stale qmlcache data
    ../patches/0001-qtdeclarative-disable-qml-disk-cache.patch
    # add version specific QML import path
    ../patches/0002-qtdeclarative-also-use-versioned-qml-paths.patch
  ];
}