22 lines
229 B
Nix
22 lines
229 B
Nix
|
|
{
|
||
|
|
qtModule,
|
||
|
|
qtbase,
|
||
|
|
qtdeclarative,
|
||
|
|
libiconv,
|
||
|
|
icu,
|
||
|
|
openssl,
|
||
|
|
}:
|
||
|
|
|
||
|
|
qtModule {
|
||
|
|
pname = "qt5compat";
|
||
|
|
propagatedBuildInputs = [
|
||
|
|
qtbase
|
||
|
|
qtdeclarative
|
||
|
|
];
|
||
|
|
buildInputs = [
|
||
|
|
libiconv
|
||
|
|
icu
|
||
|
|
openssl
|
||
|
|
];
|
||
|
|
}
|