cfbcf12276
Change-Id: I61efeb666ff7481c05fcb247168290e86a250151
10 lines
208 B
Nix
10 lines
208 B
Nix
{
|
|
lib,
|
|
python3,
|
|
writeShellScriptBin,
|
|
}:
|
|
|
|
writeShellScriptBin "build-release-notes" ''
|
|
exec ${lib.getExe (python3.withPackages (p: [ p.python-frontmatter ]))} \
|
|
${./build-release-notes.py} "$@"
|
|
''
|