19 lines
195 B
Nix
19 lines
195 B
Nix
|
|
{
|
||
|
|
qtModule,
|
||
|
|
qtbase,
|
||
|
|
qtdeclarative,
|
||
|
|
}:
|
||
|
|
|
||
|
|
qtModule {
|
||
|
|
pname = "qtwebsockets";
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
qtbase
|
||
|
|
qtdeclarative
|
||
|
|
];
|
||
|
|
outputs = [
|
||
|
|
"out"
|
||
|
|
"dev"
|
||
|
|
"bin"
|
||
|
|
];
|
||
|
|
}
|