about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/swig
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-09-22 11:59:41 +0000
committerLudovic Courtès <ludo@gnu.org>2009-09-22 11:59:41 +0000
commit7735b5434042bb0220749e5f7a0f8d4891f0dc24 (patch)
tree15322d550eab6e98fdd9e9dbe633f40847d93ea9 /pkgs/development/tools/misc/swig
parent4c759795e0a51c542acca2962561689d31a0ca9c (diff)
downloadnixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.tar
nixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.tar.gz
nixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.tar.bz2
nixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.tar.lz
nixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.tar.xz
nixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.tar.zst
nixlib-7735b5434042bb0220749e5f7a0f8d4891f0dc24.zip
Keep only one SWIG, with support for all languages.
svn path=/nixpkgs/trunk/; revision=17351
Diffstat (limited to 'pkgs/development/tools/misc/swig')
-rw-r--r--pkgs/development/tools/misc/swig/default.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/swig/default.nix b/pkgs/development/tools/misc/swig/default.nix
index 867f37440324..ea95279a6272 100644
--- a/pkgs/development/tools/misc/swig/default.nix
+++ b/pkgs/development/tools/misc/swig/default.nix
@@ -1,4 +1,8 @@
-{ perlSupport, pythonSupport, javaSupport, guileSupport
+{ /* SWIG doesn't carry any run-time dependency on Perl, Python, etc., so
+     it's safe to enable everything by default.  */
+  perlSupport ? true, pythonSupport ? true, javaSupport ? true
+, guileSupport ? true
+
 , stdenv, fetchurl, boost, perl ? null, python ? null, jdk ? null
 , guile ? null }: