swig2: 2.0.11 -> 2.0.12
This commit is contained in:
parent
711692f18e
commit
038d29121e
@ -1,15 +1,28 @@
|
|||||||
{ stdenv, fetchurl, pcre }:
|
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "swig-2.0.11";
|
name = "swig-${version}";
|
||||||
|
version = "2.0.12";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/swig/${name}.tar.gz";
|
owner = "swig";
|
||||||
sha256 = "0kj21b6syp62vx68r1j6azv9033kng68pxm1k79pm4skkzr0ny33";
|
repo = "swig";
|
||||||
|
rev = "rel-${version}";
|
||||||
|
sha256 = "0khm9gh5pczfcihr0pbicaicc4v9kjm5ip2alvkhmbb3ga6njkcm";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ autoconf automake libtool bison ];
|
||||||
buildInputs = [ pcre ];
|
buildInputs = [ pcre ];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Disable ccache documentation as it need yodl
|
||||||
|
sed -i '/man1/d' CCache/Makefile.in
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "SWIG, an interface compiler that connects C/C++ code to higher-level languages";
|
description = "SWIG, an interface compiler that connects C/C++ code to higher-level languages";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user