Files
Michael Daniels fa9a1e0bd4 maintainers: remove periklis
No nixpkgs activity in the past year.

Has not responded in issues they were pinged in for two years, per Aleksanaa
(I have not verified this myself):
https://github.com/NixOS/nixpkgs/issues?q=sort%3Acreated-desc%20is%3Aissue%20involves%3Aperiklis.

I also removed "with lib;" from meta where I saw it.
2025-12-11 17:34:01 -05:00

15 lines
188 B
Nix

{
lib,
qtModule,
qtbase,
}:
qtModule {
pname = "qtmacextras";
propagatedBuildInputs = [ qtbase ];
meta = {
maintainers = [ ];
platforms = lib.platforms.darwin;
};
}