about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2017-04-24 08:14:21 +0200
committerGitHub <noreply@github.com>2017-04-24 08:14:21 +0200
commit80828429d70e2cfd6bc41c9f2dd5e364c9ab706c (patch)
tree98e6935c3a2730aca768c283d0e2adeeac79d2f7 /pkgs/applications/graphics
parent2df7f1b5b5ad5c1a4805f6d756ede50e0930e9eb (diff)
parent2060f5b1fc2897e4fe2c48f9da3048865f5764c6 (diff)
downloadnixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.tar
nixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.tar.gz
nixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.tar.bz2
nixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.tar.lz
nixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.tar.xz
nixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.tar.zst
nixlib-80828429d70e2cfd6bc41c9f2dd5e364c9ab706c.zip
Merge pull request #25066 from matthewbauer/less-darwin-eval-errors
Add Darwin as platform to various "broken" packages that actually build
Diffstat (limited to 'pkgs/applications/graphics')
-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 14335a4c2a9d..a5643da8c3a8 100644
--- a/pkgs/applications/graphics/tesseract/default.nix
+++ b/pkgs/applications/graphics/tesseract/default.nix
@@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
     homepage = http://code.google.com/p/tesseract-ocr/;
     license = stdenv.lib.licenses.asl20;
     maintainers = with stdenv.lib.maintainers; [viric];
-    platforms = with stdenv.lib.platforms; linux;
+    platforms = with stdenv.lib.platforms; linux ++ darwin;
   };
 }