dotfiles/pkgs/tools/misc/ocr/package.nix

8 lines
151 B
Nix
Raw Normal View History

2025-02-22 17:39:12 -05:00
{ pkgs, writeShellApplication }:
2025-01-30 14:48:17 -05:00
2025-02-22 17:39:12 -05:00
writeShellApplication {
2025-01-30 14:48:17 -05:00
name = "ocr";
runtimeInputs = [ pkgs.tesseract ];
text = builtins.readFile ./ocr.sh;
}