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

11 lines
214 B
Nix
Raw Normal View History

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