brainix/sources/nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix
2026-02-13 17:06:24 +09:00

10 lines
210 B
Nix

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