nixpkgs/pkgs/development/libraries/qt-5/modules/qtmacextras.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
201 B
Nix
Raw Normal View History

{ lib, qtModule, qtbase }:
2017-03-25 23:16:51 +00:00
qtModule {
2021-05-14 10:53:30 +00:00
pname = "qtmacextras";
2019-06-19 18:28:41 +00: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;
};
}