dotfiles/pkgs/tools/misc/ocr/package.nix
2025-01-30 14:48:17 -05:00

8 lines
138 B
Nix

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