summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-09-21 12:15:01 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-09-21 14:38:49 -0700
commit7040350f34c5088789194ba3a7dda96b8ca01fbe (patch)
tree942bc32b043008fd689e62d8d4ac0f5dee98acea /pkgs/development/tools
parent066481cb13d6919fb178cc085529f996f0318a58 (diff)
downloadnixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.tar
nixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.tar.gz
nixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.tar.bz2
nixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.tar.lz
nixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.tar.xz
nixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.tar.zst
nixlib-7040350f34c5088789194ba3a7dda96b8ca01fbe.zip
swig: 3.0.6 -> 3.0.7
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/swig/3.x.nix24
1 files changed, 5 insertions, 19 deletions
diff --git a/pkgs/development/tools/misc/swig/3.x.nix b/pkgs/development/tools/misc/swig/3.x.nix
index 389e473240bb..0221b30d21e9 100644
--- a/pkgs/development/tools/misc/swig/3.x.nix
+++ b/pkgs/development/tools/misc/swig/3.x.nix
@@ -2,13 +2,13 @@
 
 stdenv.mkDerivation rec {
   name = "swig-${version}";
-  version = "3.0.6";
+  version = "3.0.7";
 
   src = fetchFromGitHub {
     owner = "swig";
     repo = "swig";
     rev = "rel-${version}";
-    sha256 = "1y8rlrkqs9h5cyp75s1i9rvrj35kkcwjjw65dyv3xy1skgfxb6w8";
+    sha256 = "18zp9546d5xfq88nyykk5v3hh0iyp8r59i2ridbavxn3z914mhyv";
   };
 
   nativeBuildInputs = [ autoconf automake libtool bison ];
@@ -23,26 +23,12 @@ stdenv.mkDerivation rec {
     ./autogen.sh
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "SWIG, an interface compiler that connects C/C++ code to higher-level languages";
-
-    longDescription = ''
-       SWIG is an interface compiler that connects programs written in C and
-       C++ with languages such as Perl, Python, Ruby, Scheme, and Tcl.  It
-       works by taking the declarations found in C/C++ header files and using
-       them to generate the wrapper code that scripting languages need to
-       access the underlying C/C++ code.  In addition, SWIG provides a variety
-       of customization features that let you tailor the wrapping process to
-       suit your application.
-    '';
-
     homepage = http://swig.org/;
-
     # Licensing is a mess: http://www.swig.org/Release/LICENSE .
     license = "BSD-style";
-
-    platforms = stdenv.lib.platforms.unix;
-
-    maintainers = with stdenv.lib.maintainers; [ urkud ];
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ urkud wkennington ];
   };
 }