configuration.nix/scripts/jpassmenu/package.nix
Jalil David Salamé Messina 1fdbf8af97
All checks were successful
/ check (push) Successful in 9s
/ build-packages (push) Successful in 15s
/ build-vm (push) Successful in 29s
/ report-size (push) Successful in 1m16s
feat: replace jpassmenu with a python version
There is no reason for it to be a Rust program
2025-05-17 13:52:31 +02:00

6 lines
205 B
Nix

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