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