about summary refs log tree commit diff
path: root/pkgs/tools/misc/otfcc
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-26 23:27:59 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-26 23:27:59 +0000
commit6a23fb10a99217028f406e3a1b46037bde7c76f9 (patch)
treeba11b409cd3d22c14fc56c221d93ce5ee24d0f9d /pkgs/tools/misc/otfcc
parent8aab940a8518c7414e3c4fce081c084c5983ca29 (diff)
downloadnixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.tar
nixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.tar.gz
nixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.tar.bz2
nixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.tar.lz
nixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.tar.xz
nixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.tar.zst
nixlib-6a23fb10a99217028f406e3a1b46037bde7c76f9.zip
otfcc: disable aarch64
It explicitly targets either x86 or amd64.
Diffstat (limited to 'pkgs/tools/misc/otfcc')
-rw-r--r--pkgs/tools/misc/otfcc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/misc/otfcc/default.nix b/pkgs/tools/misc/otfcc/default.nix
index 1384e09410df..00ddd12d3cfb 100644
--- a/pkgs/tools/misc/otfcc/default.nix
+++ b/pkgs/tools/misc/otfcc/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
     description = "Optimized OpenType builder and inspector";
     homepage = https://github.com/caryll/otfcc;
     license = licenses.asl20;
-    platforms = platforms.linux;
+    platforms = [ "i686-linux" "x86_64-linux" ];
     maintainers = with maintainers; [ jfrankenau ttuegel ];
   };