1
0
Fork 0

pluh 🗣

This commit is contained in:
Lukas Wurzinger 2025-03-09 17:33:53 +01:00
parent 5a904c8507
commit 012b945e73
No known key found for this signature in database
4 changed files with 1 additions and 1 deletions
packages/musicomp

View file

@ -0,0 +1,26 @@
{
lib,
python3Packages,
opusTools,
}:
python3Packages.buildPythonApplication {
pname = "musicomp";
version = "0.1.0";
src = ./.;
pyproject = true;
doCheck = false;
build-system = [python3Packages.hatchling];
makeWrapperArgs = [
"--prefix"
"PATH"
":"
(lib.makeBinPath [opusTools])
];
meta.mainProgram = "musicomp";
}