#!/usr/bin/env nix-shell #!nix-shell -i python3 -p python3 """ Generate all-maintainers.nix using meta.maintainers as source of truth. This script uses the meta.maintainers system to extract maintainer information by evaluating an empty nixvimConfiguration, which is much simpler and more reliable than parsing files with regex. """ import argparse import inspect import json import subprocess import sys from pathlib import Path def get_project_root() -> Path: """ Find the project root directory. Tries to find the git repository root. If that fails, falls back to locating it relative to this script file. """ try: # Ask git for the top-level directory of the current repository. git_root_bytes = subprocess.check_output( ["git", "rev-parse", "--show-toplevel"], stderr=subprocess.DEVNULL ) return Path(git_root_bytes.decode("utf-8").strip()) except (subprocess.CalledProcessError, FileNotFoundError): # Fallback for when not in a git repo or git is not installed. print( "Warning: 'git rev-parse --show-toplevel' failed.", "Falling back to script location to determine root.", "This may not work correctly with flakes.", file=sys.stderr, ) # Assumes this script is at: /flake/dev/generate-all-maintainers/ return Path(__file__).parent.parent.parent.parent.resolve() class MetaMaintainerGenerator: """Generates maintainers list using meta.maintainers from nixvim evaluation.""" def __init__(self, nixvim_root: Path): self.nixvim_root = nixvim_root self.nixvim_maintainers_file = nixvim_root / "lib" / "maintainers.nix" self.output_file = nixvim_root / "generated" / "all-maintainers.nix" self.extractor_script = ( nixvim_root / "flake" / "dev" / "generate-all-maintainers" / "extract-maintainers-meta.nix" ) def extract_maintainers_from_meta(self) -> dict: """Extract maintainer information using meta.maintainers.""" print("šŸ” Extracting maintainers using meta.maintainers...") try: result = subprocess.run( [ "nix", "eval", "--file", str(self.extractor_script), "--json", ], capture_output=True, text=True, timeout=60, ) if result.returncode == 0: data = json.loads(result.stdout) print("āœ… Successfully extracted maintainers using meta.maintainers") return data else: print(f"āŒ Failed to extract maintainers: {result.stderr}") sys.exit(1) except subprocess.TimeoutExpired: print("āŒ Timeout while extracting maintainers") sys.exit(1) except Exception as e: print(f"āŒ Error extracting maintainers: {e}") sys.exit(1) def generate_maintainers_file(self) -> None: """Generate the complete all-maintainers.nix file.""" print("šŸ“„ Generating all-maintainers.nix using meta.maintainers...") # Extract maintainers using meta.maintainers maintainer_data = self.extract_maintainers_from_meta() nixvim_maintainers = maintainer_data["categorized"]["nixvim"] nixpkgs_maintainers = maintainer_data["categorized"]["nixpkgs"] formatted_maintainers = maintainer_data["formatted"] print(f"šŸ  Nixvim maintainers: {len(nixvim_maintainers)}") print(f"šŸ“¦ Nixpkgs maintainers: {len(nixpkgs_maintainers)}") with open(self.output_file, "w") as f: f.write(inspect.cleandoc(""" # Nixvim all maintainers list. # # This file lists all referenced maintainers in Nixvim. # # This file is automatically generated using meta.maintainers from nixvim evaluation # DO NOT EDIT MANUALLY # # To regenerate: nix run .#generate-all-maintainers # """)) # Use the formatted maintainers from Nix evaluation print( "✨ Serializing formatted maintainers using lib.generators.toPretty..." ) f.write("\n") f.write(formatted_maintainers) f.write("\n") self.validate_generated_file() self.print_statistics(maintainer_data) def validate_generated_file(self) -> bool: """Validate the generated Nix file syntax.""" try: result = subprocess.run( ["nix-instantiate", "--eval", str(self.output_file), "--strict"], capture_output=True, text=True, timeout=10, ) if result.returncode == 0: print("āœ… Generated file has valid Nix syntax") return True else: print("āŒ Warning: Generated file has Nix syntax errors") print(result.stderr[:500]) return False except Exception as e: print(f"Warning: Could not validate file: {e}") return False def print_statistics(self, maintainer_data: dict) -> None: """Print generation statistics.""" stats = maintainer_data["stats"] print(f"āœ… Generated {self.output_file}") print("šŸ“Š Statistics:") print(f" - Total unique maintainers: {stats['totalMaintainers']}") print(f" - Nixvim maintainers: {stats['nixvimMaintainers']}") print(f" - Nixpkgs maintainers: {stats['nixpkgsMaintainers']}") print() print("šŸŽ‰ Generation completed successfully using meta.maintainers!") def main(): parser = argparse.ArgumentParser( description="Generate Nixvim all-maintainers.nix using meta.maintainers" ) parser.add_argument( "--root", type=Path, default=None, help="Path to Nixvim root (default: auto-detect)", ) parser.add_argument( "--output", type=Path, default=None, help="Output file path (default: /generated/all-maintainers.nix)", ) args = parser.parse_args() if args.root: nixvim_root = args.root else: nixvim_root = get_project_root() if not (nixvim_root / "lib" / "maintainers.nix").exists(): print(f"Error: Could not find maintainers.nix in {nixvim_root}") print("Please specify --root or run from Nixvim directory") sys.exit(1) generator = MetaMaintainerGenerator(nixvim_root) if args.output: generator.output_file = args.output print("šŸš€ Generating maintainers using meta.maintainers approach...") try: generator.generate_maintainers_file() except KeyboardInterrupt: print("\nāŒ Generation cancelled by user") sys.exit(1) except Exception as e: print(f"āŒ Error generating maintainers file: {e}") sys.exit(1) if __name__ == "__main__": main()