nixpkgs/pkgs/development/tools/guile/g-wrap/default.nix
Ludovic Courtès c1e5a9d2fb G-Wrap: Propagate libffi.
svn path=/nixpkgs/trunk/; revision=17656
2009-10-05 22:21:45 +00:00

41 lines
1.2 KiB
Nix

{ fetchurl, stdenv, guile, libffi, pkgconfig, glib
, guileLib }:
stdenv.mkDerivation rec {
name = "g-wrap-1.9.12";
src = fetchurl {
url = "mirror://savannah/g-wrap/${name}.tar.gz";
sha256 = "1bkca6vj92phgk46n1qid6naxgx58kk4p1y29pap6177j81s7cc6";
};
# Note: Glib support is optional, but it's quite useful (e.g., it's
# used by Guile-GNOME).
buildInputs = [ guile pkgconfig glib ]
++ stdenv.lib.optional doCheck guileLib;
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 = {
description = "G-Wrap, a wrapper generator for Guile";
longDescription = ''
G-Wrap is a tool (and Guile library) for generating function
wrappers for inter-language calls. It currently only supports
generating Guile wrappers for C functions.
'';
homepage = http://www.nongnu.org/g-wrap/;
license = "LGPLv2+";
maintainers = [ stdenv.lib.maintainers.ludo ];
};
}