1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-03-16 14:27:06 +00:00
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;
}