2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre }:
|
2014-04-19 22:54:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-17 21:15:36 +00:00
|
|
|
name = "swig-${version}";
|
2017-07-03 00:13:21 +00:00
|
|
|
version = "3.0.12";
|
2015-07-17 21:15:36 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "swig";
|
|
|
|
repo = "swig";
|
|
|
|
rev = "rel-${version}";
|
2017-07-03 00:13:21 +00:00
|
|
|
sha256 = "1wyffskbkzj5zyhjnnpip80xzsjcr3p0q5486z3wdwabnysnhn8n";
|
2014-04-19 22:54:16 +00:00
|
|
|
};
|
|
|
|
|
2015-07-17 21:15:36 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake libtool bison ];
|
2014-04-19 22:54:16 +00:00
|
|
|
buildInputs = [ pcre ];
|
|
|
|
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [ "--without-tcl" ];
|
2017-01-20 10:16:13 +00:00
|
|
|
|
2015-07-17 21:15:36 +00:00
|
|
|
postPatch = ''
|
|
|
|
# Disable ccache documentation as it need yodl
|
|
|
|
sed -i '/man1/d' CCache/Makefile.in
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2016-07-25 19:15:30 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-04-19 22:54:16 +00:00
|
|
|
description = "SWIG, an interface compiler that connects C/C++ code to higher-level languages";
|
|
|
|
homepage = http://swig.org/;
|
2016-07-25 19:15:30 +00:00
|
|
|
# Different types of licenses available: http://www.swig.org/Release/LICENSE .
|
|
|
|
license = licenses.gpl3Plus;
|
2016-07-26 13:34:49 +00:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-04-19 22:54:16 +00:00
|
|
|
};
|
|
|
|
}
|