forked from lix-project/lix
7 lines
201 B
Nix
7 lines
201 B
Nix
|
{ lib, python3, writeShellScriptBin }:
|
||
|
|
||
|
writeShellScriptBin "build-release-notes" ''
|
||
|
exec ${lib.getExe (python3.withPackages (p: [ p.python-frontmatter ]))} \
|
||
|
${./build-release-notes.py} "$@"
|
||
|
''
|