summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2013-11-14 10:42:58 -0500
committerShea Levy <shea@shealevy.com>2013-11-14 10:42:58 -0500
commit6555e31fb4a13640b8df2487a906051bc94688bf (patch)
tree245146012cd466ab8186f99583a07032d76b2f28 /pkgs
parent38185f8e5158941df2b6baaab09960ffef2f0279 (diff)
downloadnixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.tar
nixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.tar.gz
nixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.tar.bz2
nixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.tar.lz
nixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.tar.xz
nixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.tar.zst
nixpkgs-6555e31fb4a13640b8df2487a906051bc94688bf.zip
ImageMagick and asciidoc build on 64-bit darwin
Tested by @zefhemel

Signed-off-by: Shea Levy <shea@shealevy.com>
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/graphics/ImageMagick/default.nix2
-rw-r--r--pkgs/tools/typesetting/asciidoc/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/ImageMagick/default.nix b/pkgs/applications/graphics/ImageMagick/default.nix
index 0a6aed814ae..aa0bdbfe56c 100644
--- a/pkgs/applications/graphics/ImageMagick/default.nix
+++ b/pkgs/applications/graphics/ImageMagick/default.nix
@@ -55,7 +55,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     homepage = http://www.imagemagick.org/;
     description = "A software suite to create, edit, compose, or convert bitmap images";
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ [ "x86_64-darwin" ];
     maintainers = with maintainers; [ the-kenny ];
   };
 }
diff --git a/pkgs/tools/typesetting/asciidoc/default.nix b/pkgs/tools/typesetting/asciidoc/default.nix
index aeeaf04e7ba..869fb99c63f 100644
--- a/pkgs/tools/typesetting/asciidoc/default.nix
+++ b/pkgs/tools/typesetting/asciidoc/default.nix
@@ -257,7 +257,7 @@ stdenv.mkDerivation rec {
     '';
     homepage = "http://www.methods.co.nz/asciidoc/";
     license = licenses.gpl2Plus;
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ [ "x86_64-darwin" ];
     maintainers = [ maintainers.bjornfor ];
   };
 }