2008-03-13 15:18:29 +01:00
|
|
|
{ fetchurl, stdenv, libtool, readline, gmp
|
|
|
|
, gawk, makeWrapper }:
|
2005-02-25 23:22:40 +01:00
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-07-05 23:41:36 +02:00
|
|
|
name = "guile-1.8.7";
|
2009-11-22 23:16:58 +01:00
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
src = fetchurl {
|
2008-03-19 09:42:30 +01:00
|
|
|
url = "mirror://gnu/guile/" + name + ".tar.gz";
|
2009-07-05 23:41:36 +02:00
|
|
|
sha256 = "1czhcrn6l63xhsw3fjmv88djflqxbdpxjhgmwwvscm8rv4wn7vmz";
|
2008-02-20 10:02:00 +01:00
|
|
|
};
|
2008-02-12 11:41:00 +01:00
|
|
|
|
2010-06-22 10:06:12 +02:00
|
|
|
patches = [ ./cpp-4.5.patch ];
|
|
|
|
|
2009-11-23 18:01:28 +01:00
|
|
|
buildNativeInputs = [ makeWrapper gawk ];
|
Big fixes in the cross build:
- Before this changes, cflags and ldflags for the native and the cross compiler
got mixed. Not all the gcc-wrapper/gcc-cross-wrapper variables are
independant now, but enough, I think.
- Fixed the generic stdenv expression, which did a big mess on buildInputs and
buildNativeInputs. Now it distinguishes when there is a stdenvCross or not.
Maybe we should have a single stdenv and forget about the stdenvCross
adapter - this could end in a stdenv a bit complex, but simpler than the
generic stdenv + adapter.
- Added basic support in pkgconfig for cross-builds: a single PKG_CONFIG_PATH
now works for both the cross and the native compilers, but I think this
should work well for most cases I can think of.
- I tried to fix the guile expression to cross-biuld; guile is built, but not
its manual, so the derivation still fails. Guile requires patching to
cross-build, as far as I understnad.
- Made the glibcCross build to be done through the usage of a
gcc-cross-wrapper over the gcc-cross-stage-static, instead of using it
directly.
- Trying to make physfs (a neverball dependency) cross build.
- Updated the gcc expression to support building a cross compiler without getting
derivation variables mixed with those of the stdenvCross.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18534
2009-11-22 20:51:45 +01:00
|
|
|
propagatedBuildInputs = [ readline gmp libtool ];
|
2009-11-22 23:48:43 +01:00
|
|
|
selfBuildNativeInput = true;
|
2008-02-12 11:41:00 +01:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"
|
|
|
|
'';
|
|
|
|
|
2008-06-16 16:27:26 +02:00
|
|
|
preBuild = ''
|
|
|
|
sed -e '/lt_dlinit/a lt_dladdsearchdir("'$out/lib'");' -i libguile/dynl.c
|
|
|
|
'';
|
|
|
|
|
Big fixes in the cross build:
- Before this changes, cflags and ldflags for the native and the cross compiler
got mixed. Not all the gcc-wrapper/gcc-cross-wrapper variables are
independant now, but enough, I think.
- Fixed the generic stdenv expression, which did a big mess on buildInputs and
buildNativeInputs. Now it distinguishes when there is a stdenvCross or not.
Maybe we should have a single stdenv and forget about the stdenvCross
adapter - this could end in a stdenv a bit complex, but simpler than the
generic stdenv + adapter.
- Added basic support in pkgconfig for cross-builds: a single PKG_CONFIG_PATH
now works for both the cross and the native compilers, but I think this
should work well for most cases I can think of.
- I tried to fix the guile expression to cross-biuld; guile is built, but not
its manual, so the derivation still fails. Guile requires patching to
cross-build, as far as I understnad.
- Made the glibcCross build to be done through the usage of a
gcc-cross-wrapper over the gcc-cross-stage-static, instead of using it
directly.
- Trying to make physfs (a neverball dependency) cross build.
- Updated the gcc expression to support building a cross compiler without getting
derivation variables mixed with those of the stdenvCross.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18534
2009-11-22 20:51:45 +01:00
|
|
|
# Guile needs patching to preset results for the configure tests
|
|
|
|
# about pthreads, which work only in native builds.
|
|
|
|
preConfigure = ''
|
|
|
|
if test -n "$crossConfig"; then
|
|
|
|
configureFlags="--with-threads=no $configureFlags"
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2009-11-22 23:48:43 +01:00
|
|
|
# One test fails.
|
|
|
|
# ERROR: file: "libtest-asmobs", message: "file not found"
|
2010-06-22 10:06:12 +02:00
|
|
|
# This is fixed here:
|
|
|
|
# <http://git.savannah.gnu.org/cgit/guile.git/commit/?h=branch_release-1-8&id=a0aa1e5b69d6ef0311aeea8e4b9a94eae18a1aaf>.
|
2009-11-22 23:48:43 +01:00
|
|
|
doCheck = false;
|
2008-03-13 15:18:29 +01:00
|
|
|
|
2008-02-12 11:41:00 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2008-02-20 10:02:00 +01:00
|
|
|
|
|
|
|
meta = {
|
2008-03-20 15:35:03 +01:00
|
|
|
description = "GNU Guile, an embeddable Scheme interpreter";
|
|
|
|
longDescription = ''
|
|
|
|
GNU Guile is an interpreter for the Scheme programming language,
|
|
|
|
packaged as a library that can be embedded into programs to make
|
|
|
|
them extensible. It supports many SRFIs.
|
|
|
|
'';
|
|
|
|
|
2008-02-20 10:02:00 +01:00
|
|
|
homepage = http://www.gnu.org/software/guile/;
|
2008-05-09 14:12:26 +02:00
|
|
|
license = "LGPLv2+";
|
2009-07-05 23:41:36 +02:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2008-02-20 10:02:00 +01:00
|
|
|
};
|
2005-02-25 23:22:40 +01:00
|
|
|
}
|