about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/swig
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-07-26 15:27:02 +0200
committerGitHub <noreply@github.com>2016-07-26 15:27:02 +0200
commitcb776e72a03bad357eb7080675e60f9d24b3d0b7 (patch)
tree682153c7fe812a10f02ac2efff78c26643bcfef8 /pkgs/development/tools/misc/swig
parente7ef33c50a80f2382e62a039060894efd189ecc0 (diff)
parenteb2e3965b8f4ae02e548f4f0ada91d88837e714d (diff)
downloadnixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.tar
nixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.tar.gz
nixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.tar.bz2
nixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.tar.lz
nixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.tar.xz
nixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.tar.zst
nixlib-cb776e72a03bad357eb7080675e60f9d24b3d0b7.zip
Merge pull request #17258 from leenaars/patch-1
swig: 3.0.7 -> 3.0.10
Diffstat (limited to 'pkgs/development/tools/misc/swig')
-rw-r--r--pkgs/development/tools/misc/swig/3.x.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/tools/misc/swig/3.x.nix b/pkgs/development/tools/misc/swig/3.x.nix
index f93f7d6511db..18e46aa54b29 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.7";
+  version = "3.0.10";
 
   src = fetchFromGitHub {
     owner = "swig";
     repo = "swig";
     rev = "rel-${version}";
-    sha256 = "18zp9546d5xfq88nyykk5v3hh0iyp8r59i2ridbavxn3z914mhyv";
+    sha256 = "049rj883r9mf2bgabj3b03p7cnmqgl5939lmh8v5nnia24zb51jg";
   };
 
   nativeBuildInputs = [ autoconf automake libtool bison ];
@@ -23,12 +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";
     homepage = http://swig.org/;
-    # Licensing is a mess: http://www.swig.org/Release/LICENSE .
-    license = "BSD-style";
-    platforms = lib.platforms.linux ++ lib.platforms.darwin;
-    maintainers = [ lib.maintainers.urkud lib.maintainers.wkennington ];
+    # Different types of licenses available: http://www.swig.org/Release/LICENSE .
+    license = licenses.gpl3Plus;
+    platforms = with platforms; [ linux darwin ];
+    maintainers = with maintainers; [ urkud wkennington ];
   };
 }