about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/swig/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/misc/swig/default.nix')
-rw-r--r--pkgs/development/tools/misc/swig/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/swig/default.nix b/pkgs/development/tools/misc/swig/default.nix
new file mode 100644
index 000000000000..de5048afba15
--- /dev/null
+++ b/pkgs/development/tools/misc/swig/default.nix
@@ -0,0 +1,23 @@
+{ perlSupport, pythonSupport
+, stdenv, fetchurl, perl ? null, python ? null}:
+
+assert perlSupport -> !isNull perl;
+assert pythonSupport -> !isNull python;
+
+derivation {
+  name = "swig-1.3.19";
+  system = stdenv.system;
+
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://heanet.dl.sourceforge.net/sourceforge/swig/swig-1.3.19.tar.gz;
+    md5 = "a733455544426b31868dd87fc162e750";
+  };
+
+  perlSupport = perlSupport;
+  pythonSupport = pythonSupport;
+
+  stdenv = stdenv;
+  perl = if perlSupport then perl else null;
+  python = if pythonSupport then python else null;
+}
\ No newline at end of file