about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix
blob: 11964caf17b1782c085cd89e630fd480d9e77b0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ stdenv, qtModule, qtbase }:

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