Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 50ddd022934e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f8d83938a757
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Aug 5, 2019

  1. swig4: init at 4.0.0

    SWIG 4 is not a complete replacement for SWIG 3 because it has removed support
    for CFFI, Allegrocl, Chicken, CLISP, S-EXP, UFFI, Pike, Modula3.
    orivej committed Aug 5, 2019
    Copy the full SHA
    f8d8393 View commit details
Showing with 38 additions and 0 deletions.
  1. +37 −0 pkgs/development/tools/misc/swig/4.nix
  2. +1 −0 pkgs/top-level/all-packages.nix
37 changes: 37 additions & 0 deletions pkgs/development/tools/misc/swig/4.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre }:

stdenv.mkDerivation rec {
pname = "swig";
version = "4.0.0";

src = fetchFromGitHub {
owner = "swig";
repo = "swig";
rev = "rel-${version}";
sha256 = "0yx33972jd3214xr3mrap0j5clma9bvs42qz8x38dfz62xlsi78v";
};

PCRE_CONFIG = "${pcre.dev}/bin/pcre-config";
nativeBuildInputs = [ autoconf automake libtool bison ];
buildInputs = [ pcre ];

configureFlags = [ "--without-tcl" ];

# Disable ccache documentation as it needs yodl
postPatch = ''
sed -i '/man1/d' CCache/Makefile.in
'';

preConfigure = ''
./autogen.sh
'';

meta = with stdenv.lib; {
description = "SWIG, an interface compiler that connects C/C++ code to higher-level languages";
homepage = http://swig.org/;
# Different types of licenses available: http://www.swig.org/Release/LICENSE .
license = licenses.gpl3Plus;
maintainers = with maintainers; [ orivej ];
platforms = with platforms; linux ++ darwin;
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -9870,6 +9870,7 @@ in
swig1 = callPackage ../development/tools/misc/swig { };
swig2 = callPackage ../development/tools/misc/swig/2.x.nix { };
swig3 = callPackage ../development/tools/misc/swig/3.x.nix { };
swig4 = callPackage ../development/tools/misc/swig/4.nix { };
swig = swig3;
swigWithJava = swig;