mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-25 15:22:03 +00:00
8 lines
151 B
Nix
8 lines
151 B
Nix
{ pkgs, writeShellApplication }:
|
|
|
|
writeShellApplication {
|
|
name = "ocr";
|
|
runtimeInputs = [ pkgs.tesseract ];
|
|
text = builtins.readFile ./ocr.sh;
|
|
}
|