nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix
2021-05-14 05:53:30 -05:00

11 lines
201 B
Nix

{ lib, qtModule, qtbase }:
qtModule {
pname = "qtmacextras";
qtInputs = [ qtbase ];
meta = with lib; {
maintainers = with maintainers; [ periklis ];
platforms = platforms.darwin;
};
}