mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
10 lines
129 B
Nix
10 lines
129 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtwebsockets
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qthttpserver";
|
|
propagatedBuildInputs = [ qtbase qtwebsockets ];
|
|
}
|