nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix

11 lines
200 B
Nix
Raw Normal View History

{ lib, qtModule, qtbase }:
2017-03-25 16:16:51 -07:00
qtModule {
2017-03-25 16:16:51 -07:00
name = "qtmacextras";
2019-06-19 11:28:41 -07:00
qtInputs = [ qtbase ];
2021-01-23 09:15:07 -08:00
meta = with lib; {
2017-03-25 16:16:51 -07:00
maintainers = with maintainers; [ periklis ];
platforms = platforms.darwin;
};
}