mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
65445212df
This fixes pythonPackages.cffi test suite failure.
64 lines
2.2 KiB
Nix
64 lines
2.2 KiB
Nix
{ fetchurl, stdenv, dejagnu, doCheck ? false
|
|
, buildPlatform, hostPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libffi-3.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://sourceware.org/pub/libffi/${name}.tar.gz";
|
|
sha256 = "0dya49bnhianl0r65m65xndz6ls2jn1xngyn72gd28ls3n7bnvnh";
|
|
};
|
|
|
|
patches = stdenv.lib.optional stdenv.isCygwin ./3.2.1-cygwin.patch ++
|
|
stdenv.lib.optional stdenv.isAarch64 (fetchurl {
|
|
url = https://src.fedoraproject.org/rpms/libffi/raw/ccffc1700abfadb0969495a6e51b964117fc03f6/f/libffi-aarch64-rhbz1174037.patch;
|
|
sha256 = "1vpirrgny43hp0885rswgv3xski8hg7791vskpbg3wdjdpb20wbc";
|
|
});
|
|
|
|
outputs = [ "out" "dev" "man" "info" ];
|
|
|
|
buildInputs = stdenv.lib.optional doCheck dejagnu;
|
|
|
|
configureFlags = [
|
|
"--with-gcc-arch=generic" # no detection of -march= or -mtune=
|
|
"--enable-pax_emutramp"
|
|
];
|
|
|
|
inherit doCheck;
|
|
|
|
dontStrip = hostPlatform != buildPlatform; # Don't run the native `strip' when cross-compiling.
|
|
|
|
# Install headers and libs in the right places.
|
|
postFixup = ''
|
|
mkdir -p "$dev/"
|
|
mv "$out/lib/${name}/include" "$dev/include"
|
|
rmdir "$out/lib/${name}"
|
|
substituteInPlace "$dev/lib/pkgconfig/libffi.pc" \
|
|
--replace 'includedir=''${libdir}/libffi-3.2.1' "includedir=$dev"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A foreign function call interface library";
|
|
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.
|
|
'';
|
|
homepage = http://sourceware.org/libffi/;
|
|
# See http://github.com/atgreen/libffi/blob/master/LICENSE .
|
|
license = licenses.free;
|
|
maintainers = [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|