configuration.nix/scripts/audiomenu/package.nix
Jalil David Salamé Messina e6d07010af
Some checks failed
/ check (push) Successful in 9s
/ build-packages (push) Failing after 15s
/ build-vm (push) Has been skipped
/ report-size (push) Has been skipped
feat: rewrite audiomenu in Python
There is no reason for it to be a Rust program
2025-05-17 17:57:19 +02:00

6 lines
205 B
Nix

{ writers, python3Packages }:
writers.writePython3 "audiomenu" {
libraries = [ python3Packages.click ];
# line too long, but I like my code well documented
flakeIgnore = [ "E501" ];
} ./audiomenu.py