dotfiles/pkgs/tools/misc/ocr/package.nix
2025-02-22 17:39:12 -05:00

8 lines
151 B
Nix

{ pkgs, writeShellApplication }:
writeShellApplication {
name = "ocr";
runtimeInputs = [ pkgs.tesseract ];
text = builtins.readFile ./ocr.sh;
}