about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-6/modules/qt5compat.nix
blob: d2049d7fc3e5b4e6af4ebe1922df9ce1263e0d4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ qtModule
, qtbase
, qtdeclarative
, libiconv
, icu
, openssl
}:

qtModule {
  pname = "qt5compat";
  propagatedBuildInputs = [ qtbase qtdeclarative ];
  buildInputs = [ libiconv icu openssl ];
}