aboutsummaryrefslogtreecommitdiff
path: root/maintainers/build-release-notes.nix
blob: 1acbe87f10d4e462a423f1c71f7e962bfe9bc0f7 (plain)
1
2
3
4
5
6
7
8
9
10
{
  lib,
  python3,
  writeShellScriptBin,
}:

writeShellScriptBin "build-release-notes" ''
  exec ${lib.getExe (python3.withPackages (p: [ p.python-frontmatter ]))} \
    ${./build-release-notes.py} "$@"
''