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

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