2015-09-24 10:28:20 +01:00
|
|
|
{ fetchurl, stdenv, dejagnu, doCheck ? false }:
|
2008-04-09 08:40:48 +01:00
|
|
|
|
2013-09-03 21:08:59 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 23:12:24 +00:00
|
|
|
name = "libffi-3.2.1";
|
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";
|
2015-03-26 23:12:24 +00:00
|
|
|
sha256 = "0dya49bnhianl0r65m65xndz6ls2jn1xngyn72gd28ls3n7bnvnh";
|
2008-04-09 08:40:48 +01:00
|
|
|
};
|
|
|
|
|
2014-10-23 18:15:56 +01:00
|
|
|
patches = if stdenv.isCygwin then [ ./3.2.1-cygwin.patch ] else null;
|
|
|
|
|
2015-09-24 10:28:20 +01:00
|
|
|
buildInputs = stdenv.lib.optional doCheck dejagnu;
|
|
|
|
|
2014-03-17 17:52:16 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gcc-arch=generic" # no detection of -march= or -mtune=
|
2015-03-26 23:12:24 +00:00
|
|
|
"--enable-pax_emutramp"
|
|
|
|
];
|
2013-09-03 21:08:59 +01:00
|
|
|
|
2015-09-24 10:28:20 +01:00
|
|
|
inherit doCheck;
|
|
|
|
|
2013-09-03 21:08:59 +01:00
|
|
|
dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling.
|
|
|
|
|
2015-02-25 03:15:51 +00:00
|
|
|
# Install headers in the right place.
|
|
|
|
postInstall = ''
|
|
|
|
ln -s${if (stdenv.isFreeBSD || stdenv.isOpenBSD || stdenv.isDarwin) then "" else "r"}v "$out/lib/"libffi*/include "$out/include"
|
|
|
|
'';
|
2012-01-16 23:36:05 +00:00
|
|
|
|
2015-06-15 09:56:24 +01:00
|
|
|
meta = with stdenv.lib; {
|
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/;
|
2010-01-29 11:40:39 +00:00
|
|
|
# See http://github.com/atgreen/libffi/blob/master/LICENSE .
|
2015-06-15 09:56:24 +01:00
|
|
|
license = licenses.free;
|
2015-01-13 21:33:24 +00:00
|
|
|
maintainers = [ ];
|
2015-06-15 09:56:24 +01:00
|
|
|
platforms = platforms.all;
|
2008-04-09 08:40:48 +01:00
|
|
|
};
|
|
|
|
}
|