From 0c28d57e029f66e07a130481aea6cea3a1ca63ff Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Tue, 19 Aug 2025 16:00:59 +0200 Subject: [PATCH] service/portable: Add meta placeholder This fixes the evaluation of modules such as those tested by nix-build -A nixosTests.php.fpm-modular ... ahead of the proper fix that factors meta.maintainers out of NixOS. --- nixos/modules/system/service/portable/service.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/system/service/portable/service.nix b/nixos/modules/system/service/portable/service.nix index b62b23e09a67..78c516e34e28 100644 --- a/nixos/modules/system/service/portable/service.nix +++ b/nixos/modules/system/service/portable/service.nix @@ -44,5 +44,9 @@ in ''; }; }; + # TODO: use https://github.com/NixOS/nixpkgs/pull/431450 + meta = lib.mkOption { + description = "The maintainers of this module. This is currently a placeholder option whose value may not evaluate to anything useful until https://github.com/NixOS/nixpkgs/pull/431450 is available and used here."; + }; }; }