17 lines
350 B
Nix
17 lines
350 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtlanguageserver
|
|
, qtshadertools
|
|
, openssl
|
|
, python3
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtdeclarative";
|
|
qtInputs = [ qtbase qtlanguageserver qtshadertools ];
|
|
propagatedBuildInputs = [ openssl python3 ];
|
|
patches = [
|
|
# prevent headaches from stale qmlcache data
|
|
../patches/qtdeclarative-default-disable-qmlcache.patch
|
|
];
|
|
}
|