mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
11 lines
201 B
Nix
11 lines
201 B
Nix
{ lib, qtModule, qtbase }:
|
|
|
|
qtModule {
|
|
pname = "qtmacextras";
|
|
qtInputs = [ qtbase ];
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ periklis ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|