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

10 lines
214 B
Nix

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