mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 05:14:45 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
12 lines
170 B
Nix
12 lines
170 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, openssl
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwebsockets";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ openssl ];
|
|
}
|