chore: add meta.maintainers entries to all overlayed packages
All checks were successful
ci / treefmt (push) Successful in 1m55s

This commit is contained in:
Ceferino Patino 2026-06-28 13:33:37 -05:00
commit 04b152a268
Signed by: c4patino
SSH key fingerprint: SHA256:Wu+cU1t+7zVT9wzew/4meNmeulo66NzMqc22MdDBgXI
4 changed files with 12 additions and 1 deletions

View file

@ -38,6 +38,8 @@ buildPythonPackage {
description = "Harlequin adapter for ODBC";
homepage = "https://pypi.org/project/harlequin-odbc/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [pcboy];
maintainers = with lib.maintainers; [
c4patino
];
};
}

View file

@ -44,5 +44,8 @@ stdenv.mkDerivation {
description = "IMX471 camera driver";
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
c4patino
];
};
}

View file

@ -35,5 +35,8 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/austin-weeks/miasma";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
c4patino
];
};
}

View file

@ -30,5 +30,8 @@ stdenvNoCC.mkDerivation (finalAttrs: {
license = lib.licenses.gpl2Plus;
mainProgram = "qui";
platforms = ["x86_64-linux"];
maintainers = with lib.maintainers; [
c4patino
];
};
})