3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix

11 lines
208 B
Nix
Raw Normal View History

2021-01-23 17:15:07 +00:00
{ lib, stdenv, qtModule, qtbase }:
2017-03-25 23:16:51 +00:00
qtModule {
2017-03-25 23:16:51 +00:00
name = "qtmacextras";
2019-06-19 19:28:41 +01:00
qtInputs = [ qtbase ];
2021-01-23 17:15:07 +00:00
meta = with lib; {
2017-03-25 23:16:51 +00:00
maintainers = with maintainers; [ periklis ];
platforms = platforms.darwin;
};
}