summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2017-04-20 16:41:05 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2017-04-23 18:08:20 -0500
commit6d9ca46317f2026b0a2dc3d4006fb3efb18352e2 (patch)
tree71c36d315090decbd166d227a9ad657612b41818 /pkgs
parente75fde66e9854101eebeed0f6b391f1927cfa3ae (diff)
downloadnixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.tar
nixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.tar.gz
nixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.tar.bz2
nixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.tar.lz
nixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.tar.xz
nixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.tar.zst
nixlib-6d9ca46317f2026b0a2dc3d4006fb3efb18352e2.zip
vte: supports darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/gnome-3/3.22/core/vte/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/desktops/gnome-3/3.22/core/vte/default.nix b/pkgs/desktops/gnome-3/3.22/core/vte/default.nix
index 50aef658713a..3181348d843c 100644
--- a/pkgs/desktops/gnome-3/3.22/core/vte/default.nix
+++ b/pkgs/desktops/gnome-3/3.22/core/vte/default.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   preConfigure = "patchShebangs .";
 
-  configureFlags = [ "--enable-introspection" ];
+  configureFlags = [ "--enable-introspection" "--disable-Bsymbolic" ];
 
   enableParallelBuilding = true;
 
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
     '';
     license = licenses.lgpl2;
     maintainers = with maintainers; [ astsmtl antono lethalman ];
-    platforms = platforms.linux;
+    platforms = platforms.linux ++ platforms.darwin;
   };
 }