G-Wrap 1.9.13.

svn path=/nixpkgs/trunk/; revision=18012
This commit is contained in:
Ludovic Courtès 2009-10-29 11:23:10 +00:00
parent cf235135f3
commit f8d95145b2

View File

@ -2,10 +2,10 @@
, guileLib }:
stdenv.mkDerivation rec {
name = "g-wrap-1.9.12";
name = "g-wrap-1.9.13";
src = fetchurl {
url = "mirror://savannah/g-wrap/${name}.tar.gz";
sha256 = "1bkca6vj92phgk46n1qid6naxgx58kk4p1y29pap6177j81s7cc6";
sha256 = "0fc874zlwzjahyliqnva1zfsv0chlx4cvfhwchij9n2d3kmsss9v";
};
# Note: Glib support is optional, but it's quite useful (e.g., it's
@ -15,15 +15,6 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ libffi ];
# GMP 4.2.2 uses GNU "extern inline". With GCC 4.2 in C99 mode,
# this yields warnings such as:
#
# gmp.h:1606: warning: C99 inline functions are not supported; using GNU89
#
# Since G-Wrap builds in C99 mode and with `-Werror', we need to
# pass it `-fgnu89-inline'.
CFLAGS = "-fgnu89-inline";
doCheck = true;
meta = {