mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 14:32:02 +00:00
8 lines
138 B
Nix
8 lines
138 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "ocr";
|
||
|
runtimeInputs = [ pkgs.tesseract ];
|
||
|
text = builtins.readFile ./ocr.sh;
|
||
|
}
|