2019-06-19 19:28:41 +01:00
|
|
|
{ stdenv, qtModule, qtbase }:
|
2017-03-25 23:16:51 +00:00
|
|
|
|
2017-10-24 12:39:54 +01:00
|
|
|
qtModule {
|
2017-03-25 23:16:51 +00:00
|
|
|
name = "qtmacextras";
|
2019-06-19 19:28:41 +01:00
|
|
|
qtInputs = [ qtbase ];
|
2018-11-17 19:59:38 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-03-25 23:16:51 +00:00
|
|
|
maintainers = with maintainers; [ periklis ];
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|