nixpkgs/pkgs/development/libraries/qt-6/modules/qt5compat.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
184 B
Nix
Raw Normal View History

2021-10-16 14:22:24 +02:00
{ qtModule
, qtbase
, qtdeclarative
, libiconv
, icu
, openssl
}:
qtModule {
pname = "qt5compat";
qtInputs = [ qtbase qtdeclarative ];
2023-03-26 17:36:29 +02:00
buildInputs = [ libiconv icu openssl ];
2021-10-16 14:22:24 +02:00
}