2015-06-10 15:26:24 -07:00
|
|
|
{ fetchurl, stdenv }:
|
2008-04-09 00:40:48 -07:00
|
|
|
|
2013-09-03 13:08:59 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2015-03-26 16:12:24 -07:00
|
|
|
name = "libffi-3.2.1";
|
2010-01-29 03:40:39 -08:00
|
|
|
|
2008-04-09 00:40:48 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://sourceware.org/pub/libffi/${name}.tar.gz";
|
2015-03-26 16:12:24 -07:00
|
|
|
sha256 = "0dya49bnhianl0r65m65xndz6ls2jn1xngyn72gd28ls3n7bnvnh";
|
2008-04-09 00:40:48 -07:00
|
|
|
};
|
|
|
|
|
2014-10-23 10:15:56 -07:00
|
|
|
patches = if stdenv.isCygwin then [ ./3.2.1-cygwin.patch ] else null;
|
2014-08-26 16:14:09 -07:00
|
|
|
|
2015-10-03 04:33:13 -07:00
|
|
|
outputs = [ "dev" "out" "doc" ];
|
2013-09-03 13:08:59 -07:00
|
|
|
|
2014-03-17 10:52:16 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--with-gcc-arch=generic" # no detection of -march= or -mtune=
|
2015-03-26 16:12:24 -07:00
|
|
|
"--enable-pax_emutramp"
|
|
|
|
];
|
2013-09-03 13:08:59 -07:00
|
|
|
|
|
|
|
dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling.
|
|
|
|
|
2015-04-18 02:00:58 -07:00
|
|
|
# Install headers and libs in the right places.
|
2015-02-24 19:15:51 -08:00
|
|
|
postInstall = ''
|
2015-04-18 02:00:58 -07:00
|
|
|
mkdir -p "$dev/"
|
|
|
|
mv "$out/lib/${name}/include" "$dev/include"
|
|
|
|
rmdir "$out/lib/${name}"
|
2015-02-24 19:15:51 -08:00
|
|
|
'';
|
2012-01-16 15:36:05 -08:00
|
|
|
|
2008-04-09 00:40:48 -07:00
|
|
|
meta = {
|
2013-09-03 13:08:59 -07:00
|
|
|
description = "A foreign function call interface library";
|
2008-04-09 00:40:48 -07: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 13:08:59 -07:00
|
|
|
homepage = http://sourceware.org/libffi/;
|
2010-01-29 03:40:39 -08:00
|
|
|
# See http://github.com/atgreen/libffi/blob/master/LICENSE .
|
2014-11-05 16:44:33 -08:00
|
|
|
license = stdenv.lib.licenses.free;
|
2015-01-13 13:33:24 -08:00
|
|
|
maintainers = [ ];
|
2010-01-29 03:40:39 -08:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-04-09 00:40:48 -07:00
|
|
|
};
|
|
|
|
}
|