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

8 lines
138 B
Nix
Raw Normal View History

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