13 lines
184 B
Nix
13 lines
184 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, libiconv
|
|
, icu
|
|
, openssl
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qt5compat";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ libiconv icu openssl ];
|
|
}
|