summary refs log tree commit diff
path: root/pkgs/tools/misc/otfcc
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-27 00:07:53 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-27 00:07:53 +0000
commita160fef26dff3a8f3efcd7333bbbd039ee041b5e (patch)
treea77b64da9963cc4787b0cb204498f29db5ed518e /pkgs/tools/misc/otfcc
parent6a23fb10a99217028f406e3a1b46037bde7c76f9 (diff)
downloadnixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.tar
nixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.tar.gz
nixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.tar.bz2
nixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.tar.lz
nixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.tar.xz
nixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.tar.zst
nixpkgs-a160fef26dff3a8f3efcd7333bbbd039ee041b5e.zip
otfcc: enable darwin
Diffstat (limited to 'pkgs/tools/misc/otfcc')
-rw-r--r--pkgs/tools/misc/otfcc/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/otfcc/default.nix b/pkgs/tools/misc/otfcc/default.nix
index 00ddd12d3cf..f55f4e53296 100644
--- a/pkgs/tools/misc/otfcc/default.nix
+++ b/pkgs/tools/misc/otfcc/default.nix
@@ -26,11 +26,13 @@ stdenv.mkDerivation rec {
     cp bin/release-x*/otfcc* $out/bin/
   '';
 
+  enableParallelBuilding = true;
+
   meta = with stdenv.lib; {
     description = "Optimized OpenType builder and inspector";
     homepage = https://github.com/caryll/otfcc;
     license = licenses.asl20;
-    platforms = [ "i686-linux" "x86_64-linux" ];
+    platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
     maintainers = with maintainers; [ jfrankenau ttuegel ];
   };