From f42a4308de981713bf310576f086a3c38b98bd40 Mon Sep 17 00:00:00 2001 From: l-r-sowmya <137146627+l-r-sowmya@users.noreply.github.com> Date: Mon, 3 Jun 2024 10:31:56 +0530 Subject: [PATCH] adding tesseract in flake.nix --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index dccecb1..b925431 100644 --- a/flake.nix +++ b/flake.nix @@ -11,7 +11,7 @@ outputs = { self, nixpkgs, flake-utils, poetry2nix }: flake-utils.lib.eachDefaultSystem (system: let - nativeBuildInputs = with pkgs; [ stdenv python3 poetry ]; + nativeBuildInputs = with pkgs; [ stdenv python3 poetry tesseract ]; buildInputs = with pkgs; [ ]; # see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples.