2013-09-03 21:08:59 +01:00
|
|
|
{ fetchurl, stdenv, dejagnu }:
|
2008-04-09 08:40:48 +01:00
|
|
|
|
2013-09-03 21:08:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-04-03 09:39:17 +01:00
|
|
|
name = "libffi-3.0.13";
|
2010-01-29 11:40:39 +00:00
|
|
|
|
2008-04-09 08:40:48 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://sourceware.org/pub/libffi/${name}.tar.gz";
|
2013-04-03 09:39:17 +01:00
|
|
|
sha256 = "077ibkf84bvcd6rw1m6jb107br63i2pp301rkmsbgg6300adxp8x";
|
2008-04-09 08:40:48 +01:00
|
|
|
};
|
|
|
|
|
2014-03-17 17:52:16 +00:00
|
|
|
patches = stdenv.lib.optional (stdenv.needsPax) ./libffi-3.0.13-emutramp_pax_proc.patch;
|
|
|
|
|
2014-08-27 00:14:09 +01:00
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
|
2014-08-30 07:27:43 +01:00
|
|
|
buildInputs = [ ]
|
2014-08-27 00:14:09 +01:00
|
|
|
++ stdenv.lib.optional doCheck dejagnu;
|
2013-09-03 21:08:59 +01:00
|
|
|
|
2014-03-17 17:52:16 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gcc-arch=generic" # no detection of -march= or -mtune=
|
|
|
|
] ++ stdenv.lib.optional (stdenv.needsPax) "--enable-pax_emutramp";
|
2013-09-03 21:08:59 +01:00
|
|
|
|
2013-09-14 20:18:55 +01:00
|
|
|
doCheck = stdenv.isLinux; # until we solve dejagnu problems on darwin and expect on BSD
|
2008-04-09 08:40:48 +01:00
|
|
|
|
2013-09-03 21:08:59 +01:00
|
|
|
dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling.
|
|
|
|
|
2012-01-16 23:36:05 +00:00
|
|
|
postInstall =
|
2014-08-30 22:30:31 +01:00
|
|
|
# Install headers and libs in the right places.
|
|
|
|
'' mv "$out"/lib64/* "$out/lib"
|
|
|
|
rmdir "$out/lib64"
|
|
|
|
ln -s lib "$out/lib64"
|
|
|
|
|
|
|
|
mkdir -p "$dev/"
|
|
|
|
mv "$out/lib/${name}/include" "$dev/include"
|
|
|
|
rmdir "$out/lib/${name}"
|
2012-01-16 23:36:05 +00:00
|
|
|
'';
|
|
|
|
|
2008-04-09 08:40:48 +01:00
|
|
|
meta = {
|
2013-09-03 21:08:59 +01:00
|
|
|
description = "A foreign function call interface library";
|
2008-04-09 08:40:48 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The libffi library provides a portable, high level programming
|
|
|
|
interface to various calling conventions. This allows a
|
|
|
|
programmer to call any function specified by a call interface
|
|
|
|
description at run-time.
|
|
|
|
|
|
|
|
FFI stands for Foreign Function Interface. A foreign function
|
|
|
|
interface is the popular name for the interface that allows code
|
|
|
|
written in one language to call code written in another
|
|
|
|
language. The libffi library really only provides the lowest,
|
|
|
|
machine dependent layer of a fully featured foreign function
|
|
|
|
interface. A layer must exist above libffi that handles type
|
|
|
|
conversions for values passed between the two languages.
|
|
|
|
'';
|
|
|
|
|
2013-09-03 21:08:59 +01:00
|
|
|
homepage = http://sourceware.org/libffi/;
|
2008-04-09 08:40:48 +01:00
|
|
|
|
2010-01-29 11:40:39 +00:00
|
|
|
# See http://github.com/atgreen/libffi/blob/master/LICENSE .
|
|
|
|
license = "free, non-copyleft";
|
2009-10-05 23:21:40 +01:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2010-01-29 11:40:39 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-04-09 08:40:48 +01:00
|
|
|
};
|
|
|
|
}
|
2011-07-01 14:20:12 +01:00
|
|
|
|