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