Skip to content

Commit

Permalink
swig: 3.0.7 -> 3.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
leenaars committed Jul 26, 2016
1 parent d7176a8 commit eb2e396
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/development/tools/misc/swig/3.x.nix
Expand Up @@ -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 ];
Expand All @@ -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 ];
};
}

0 comments on commit eb2e396

Please sign in to comment.