nixpkgs/maintainers/scripts
Vladimír Čunát bf8e7f9cb3
maintainers/scripts/copy-tarballs.pl: switch nix version
nixUnstable is a deprecated alias, so the script didn't work anymore.
Also, I see no need to avoid the default nix here (maybe years ago).

Tested on mirror-tarballs.service at pluto.nixos.org (atop 24.05).
2024-06-14 09:23:21 +02:00
..
bootstrap-files
convert-to-import-cargo-lock
doc
haskell maintainers/haskell/hydra-report: slightly optimise get-report --slow 2024-03-30 13:56:58 +01:00
kde kdePackages: Gear 24.02 -> 24.05 2024-05-23 18:46:14 +03:00
all-tarballs.nix
build.nix
check-by-name.sh
check-cherry-picks.sh check-cherry-picks.sh maintainer script: add clarifying message regarding differences found 2024-04-10 22:21:08 +01:00
check-hydra-by-maintainer.nix
check-maintainer-github-handles.sh
check-maintainers-sorted.nix
convert-to-import-cargo-lock.sh
copy-tarballs.pl maintainers/scripts/copy-tarballs.pl: switch nix version 2024-06-14 09:23:21 +02:00
db-to-md.sh
debian-patches.sh
dep-licenses.sh
eval-release.nix maintainers/scripts/eval-release: don't special case xbursttools 2024-04-22 22:43:29 +03:00
eval-release.sh
feature-freeze-teams.pl
fetch-kde-qt.sh
find-tarballs.nix
fix-maintainers.pl
get-maintainer.sh
hydra_eval_check
hydra-eval-failures.py
luarocks-config.lua
luarocks-packages.csv ansicolor: init at 1.0.2 2024-06-12 23:56:32 +02:00
nix-call-package
nix-diff.sh
nix-generate-from-cpan.nix
nix-generate-from-cpan.pl
nixpkgs-lint.nix nixpkgs-lint: refactor to pname+version and dontBuild 2024-05-25 01:04:33 +02:00
nixpkgs-lint.pl
patchelf-hints.sh
pluginupdate.py maintainers/scripts/pluginupdate.py: fix repo name inferring for non-github repos 2024-05-27 12:57:35 +02:00
README.md
rebuild-amount.sh
remove-old-aliases.py
sha-to-sri.py
update-channel-branches.sh
update-dotnet-lockfiles.nix
update-octave-packages
update-octave-shell.nix
update-python-libraries
update-redirected-urls.sh
update-ruby-packages
update.nix
update.py
vanity-manual-equalities.txt
vanity.sh

Maintainer scripts

This folder contains various executable scripts for nixpkgs maintainers, and supporting data or nixlang files as needed. These scripts generally aren't a stable interface and may changed or be removed.

What follows is a (very incomplete) overview of available scripts.

Metadata

check-by-name.sh

An alias for pkgs/test/check-by-name/run-local.sh, see documentation.

get-maintainer.sh

get-maintainer.sh [selector] value returns a JSON object describing a given nixpkgs maintainer, equivalent to lib.maintainers.${x} // { handle = x; }.

This allows looking up a maintainer's attrset (including GitHub and Matrix handles, email address etc.) based on any of their handles, more correctly and robustly than text search through maintainers-list.nix.

 ./get-maintainer.sh nicoo
{
  "email": "nicoo@debian.org",
  "github": "nbraud",
  "githubId": 1155801,
  "keys": [
    {
      "fingerprint": "E44E 9EA5 4B8E 256A FB73 49D3 EC9D 3708 72BC 7A8C"
    }
  ],
  "name": "nicoo",
  "handle": "nicoo"
}

 ./get-maintainer.sh name 'Silvan Mosberger'
{
  "email": "contact@infinisil.com",
  "github": "infinisil",
  "githubId": 20525370,
  "keys": [
    {
      "fingerprint": "6C2B 55D4 4E04 8266 6B7D  DA1A 422E 9EDA E015 7170"
    }
  ],
  "matrix": "@infinisil:matrix.org",
  "name": "Silvan Mosberger",
  "handle": "infinisil"
}

The maintainer is designated by a selector which must be one of:

  • handle (default): the maintainer's attribute name in lib.maintainers;
  • email, name, github, githubId, matrix, name: attributes of the maintainer's object, matched exactly; see maintainer-list.nix for the fields' definition.