blob: 9462e33d746c4bb12f9f2b513141f900f8e40ffb (
plain)
1
2
3
4
5
6
|
{ lib, python3, writeShellScriptBin }:
writeShellScriptBin "build-release-notes" ''
exec ${lib.getExe (python3.withPackages (p: [ p.python-frontmatter ]))} \
${./build-release-notes.py} "$@"
''
|