1
0
Fork 0
This commit is contained in:
Lukas Wurzinger 2025-05-28 02:10:21 +02:00
parent 0c6b26ce38
commit 2d255153fc
No known key found for this signature in database
5 changed files with 48 additions and 51 deletions

26
package.nix Normal file
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";
}