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