mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 05:54:24 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
17 lines
332 B
Nix
17 lines
332 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
|
|
];
|
|
}
|