configuration.nix/scripts/audiomenu/package.nix
Jalil David Salamé Messina bea499a914
All checks were successful
/ check (push) Successful in 9s
/ build-packages (push) Successful in 15s
/ build-vm (push) Successful in 1s
/ report-size (push) Successful in 4s
fix(scripts): use writePython3Bin
Otherwise the paths to the binaries are wrong
2025-05-21 09:01:50 +02:00

9 lines
288 B
Nix

{ writers, python3Packages }:
writers.writePython3Bin "audiomenu" {
libraries = [ python3Packages.click ];
flakeIgnore = [
"E501" # line too long, but I like my code well documented
"W503" # line break before binary operator, ruff does this, I trust it
];
} ./audiomenu.py