summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2023-04-17 17:00:11 +0200
committerStefan Weil <sw@weilnetz.de>2023-04-23 09:01:50 +0200
commit317a5d653f390317706c0cbf0527c107862c8186 (patch)
treeb36ee5d22f1ebe45efc375ef260bbddfe2380791 /pkgs/applications
parentd3e86776592bb5cea1961faa3c16cfb721fcc78b (diff)
downloadnixpkgs-317a5d653f390317706c0cbf0527c107862c8186.tar
nixpkgs-317a5d653f390317706c0cbf0527c107862c8186.tar.gz
nixpkgs-317a5d653f390317706c0cbf0527c107862c8186.tar.bz2
nixpkgs-317a5d653f390317706c0cbf0527c107862c8186.tar.lz
nixpkgs-317a5d653f390317706c0cbf0527c107862c8186.tar.xz
nixpkgs-317a5d653f390317706c0cbf0527c107862c8186.tar.zst
nixpkgs-317a5d653f390317706c0cbf0527c107862c8186.zip
tesseract5: update dependencies
* remove unneeded dependency autoconf-archive
* add missing build input libarchive
* add missing build input curl

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/tesseract/tesseract5.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/graphics/tesseract/tesseract5.nix b/pkgs/applications/graphics/tesseract/tesseract5.nix
index a1b92e6f542..3ba90669b3a 100644
--- a/pkgs/applications/graphics/tesseract/tesseract5.nix
+++ b/pkgs/applications/graphics/tesseract/tesseract5.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, autoconf-archive, pkg-config
-, leptonica, libpng, libtiff, icu, pango, opencl-headers, fetchpatch
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config
+, curl, leptonica, libarchive, libpng, libtiff, icu, pango, opencl-headers, fetchpatch
 , Accelerate, CoreGraphics, CoreVideo
 }:
 
@@ -19,11 +19,12 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [
     pkg-config
     autoreconfHook
-    autoconf-archive
   ];
 
   buildInputs = [
+    curl
     leptonica
+    libarchive
     libpng
     libtiff
     icu