about summary refs log tree commit diff
path: root/pkgs/applications/graphics/tesseract
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2015-05-23 02:27:47 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2015-05-23 02:27:47 +0100
commit6014752e73ba5456750cb0b611a4808e8f0f49d3 (patch)
treed7da0997b93fe29011572bef08a6b1c215b34751 /pkgs/applications/graphics/tesseract
parent4d867b0b08cc6a91912836a46d94b435e964b999 (diff)
tesseract: fix postInstall
We needed to separate each of the unpack commands.
Diffstat (limited to 'pkgs/applications/graphics/tesseract')
-rw-r--r--pkgs/applications/graphics/tesseract/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/tesseract/default.nix b/pkgs/applications/graphics/tesseract/default.nix
index f20c868d4a0a8..b531c41e2d8a3 100644
--- a/pkgs/applications/graphics/tesseract/default.nix
+++ b/pkgs/applications/graphics/tesseract/default.nix
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
                   'LIBLEPT_HEADERSDIR=${leptonica}/include'
   '';
 
-  postInstall = concatStrings extraLanguages;
+  postInstall = concatStringsSep "; " extraLanguages;
 
   meta = {
     description = "OCR engine";