Merge pull request #17258 from leenaars/patch-1

swig: 3.0.7 -> 3.0.10

authored by Robin Gloster and committed by GitHub cb776e72 e7ef33c5

+7 -7
+7 -7
pkgs/development/tools/misc/swig/3.x.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "swig-${version}"; 5 - version = "3.0.7"; 5 + version = "3.0.10"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "swig"; 9 9 repo = "swig"; 10 10 rev = "rel-${version}"; 11 - sha256 = "18zp9546d5xfq88nyykk5v3hh0iyp8r59i2ridbavxn3z914mhyv"; 11 + sha256 = "049rj883r9mf2bgabj3b03p7cnmqgl5939lmh8v5nnia24zb51jg"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ autoconf automake libtool bison ]; ··· 23 23 ./autogen.sh 24 24 ''; 25 25 26 - meta = { 26 + meta = with stdenv.lib; { 27 27 description = "SWIG, an interface compiler that connects C/C++ code to higher-level languages"; 28 28 homepage = http://swig.org/; 29 - # Licensing is a mess: http://www.swig.org/Release/LICENSE . 30 - license = "BSD-style"; 31 - platforms = lib.platforms.linux ++ lib.platforms.darwin; 32 - maintainers = [ lib.maintainers.urkud lib.maintainers.wkennington ]; 29 + # Different types of licenses available: http://www.swig.org/Release/LICENSE . 30 + license = licenses.gpl3Plus; 31 + platforms = with platforms; [ linux darwin ]; 32 + maintainers = with maintainers; [ urkud wkennington ]; 33 33 }; 34 34 }