mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
12 lines
157 B
Nix
12 lines
157 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, openssl
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwebsockets";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ openssl ];
|
|
}
|