nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix
2021-01-24 00:16:29 +07:00

11 lines
208 B
Nix

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