nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix
2021-01-25 18:31:47 +01:00

11 lines
200 B
Nix

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