23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
18 lines
420 B
Nix
18 lines
420 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtlanguageserver
|
|
, qtshadertools
|
|
, openssl
|
|
, python3
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtdeclarative";
|
|
propagatedBuildInputs = [ qtbase qtlanguageserver qtshadertools openssl python3 ];
|
|
patches = [
|
|
# prevent headaches from stale qmlcache data
|
|
../patches/qtdeclarative-default-disable-qmlcache.patch
|
|
# add version specific QML import path
|
|
../patches/qtdeclarative-qml-paths.patch
|
|
];
|
|
}
|