forked from mirrors/nixpkgs
tesseract: fix postInstall
We needed to separate each of the unpack commands.
This commit is contained in:
parent
4d867b0b08
commit
6014752e73
|
@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
|
||||||
'LIBLEPT_HEADERSDIR=${leptonica}/include'
|
'LIBLEPT_HEADERSDIR=${leptonica}/include'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
postInstall = concatStrings extraLanguages;
|
postInstall = concatStringsSep "; " extraLanguages;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "OCR engine";
|
description = "OCR engine";
|
||||||
|
|
Loading…
Reference in a new issue