Loading pkgs/by-name/sw/swig3/package.nix 0 → 100644 +56 −0 Original line number Diff line number Diff line { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre, }: stdenv.mkDerivation (finalAttrs: { pname = "swig"; version = "3.0.12"; src = fetchFromGitHub { owner = "swig"; repo = "swig"; rev = "rel-${finalAttrs.version}"; sha256 = "1wyffskbkzj5zyhjnnpip80xzsjcr3p0q5486z3wdwabnysnhn8n"; }; # Not using autoreconfHook because it fails due to missing macros, contrary # to this script preConfigure = '' ./autogen.sh ''; 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 ''; meta = { description = "Interface compiler that connects C/C++ code to higher-level languages"; homepage = "https://swig.org/"; # Different types of licenses available: http://www.swig.org/Release/LICENSE . license = lib.licenses.gpl3Plus; platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ doronbehar ]; }; }) pkgs/top-level/aliases.nix +0 −1 Original line number Diff line number Diff line Loading @@ -1569,7 +1569,6 @@ mapAliases { swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23 swig2 = throw "swig2 has been removed as it is obsolete"; # Added 2024-08-23 swig3 = throw "swig3 has been removed as it is obsolete"; # Added 2024-09-12 swig4 = swig; # Added 2024-09-12 swigWithJava = throw "swigWithJava has been removed as the main swig package has supported Java since 2009"; # Added 2024-09-12 swtpm-tpm2 = throw "'swtpm-tpm2' has been renamed to/replaced by 'swtpm'"; # Converted to throw 2024-10-17 Loading Loading
pkgs/by-name/sw/swig3/package.nix 0 → 100644 +56 −0 Original line number Diff line number Diff line { lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, bison, pcre, }: stdenv.mkDerivation (finalAttrs: { pname = "swig"; version = "3.0.12"; src = fetchFromGitHub { owner = "swig"; repo = "swig"; rev = "rel-${finalAttrs.version}"; sha256 = "1wyffskbkzj5zyhjnnpip80xzsjcr3p0q5486z3wdwabnysnhn8n"; }; # Not using autoreconfHook because it fails due to missing macros, contrary # to this script preConfigure = '' ./autogen.sh ''; 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 ''; meta = { description = "Interface compiler that connects C/C++ code to higher-level languages"; homepage = "https://swig.org/"; # Different types of licenses available: http://www.swig.org/Release/LICENSE . license = lib.licenses.gpl3Plus; platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ doronbehar ]; }; })
pkgs/top-level/aliases.nix +0 −1 Original line number Diff line number Diff line Loading @@ -1569,7 +1569,6 @@ mapAliases { swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06 swig1 = throw "swig1 has been removed as it is obsolete"; # Added 2024-08-23 swig2 = throw "swig2 has been removed as it is obsolete"; # Added 2024-08-23 swig3 = throw "swig3 has been removed as it is obsolete"; # Added 2024-09-12 swig4 = swig; # Added 2024-09-12 swigWithJava = throw "swigWithJava has been removed as the main swig package has supported Java since 2009"; # Added 2024-09-12 swtpm-tpm2 = throw "'swtpm-tpm2' has been renamed to/replaced by 'swtpm'"; # Converted to throw 2024-10-17 Loading