treewide: remove unused with statements from maintainer lists

$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
This commit is contained in:
Jörg Thalheim
2024-07-29 10:06:20 +08:00
committed by aleksana
parent 8e3eab28d8
commit 5356420466
1920 changed files with 1964 additions and 1964 deletions
@@ -57,7 +57,7 @@ buildPythonPackage rec {
homepage = "https://bitbucket.org/zzzeek/alembic";
description = "Database migration tool for SQLAlchemy";
license = licenses.mit;
maintainers = with maintainers; [ ];
maintainers = [ ];
mainProgram = "alembic";
};
}