11 lines
155 B
Nix
Raw Normal View History

2025-02-16 15:40:15 -05:00
{ pkgs, ... }:
pkgs.
pkgs.writeShellApplication
{
name = "ocr";
runtimeInputs = [ pkgs.tesseract ];
text = builtins.readFile ./ocr.sh;
}