python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / java / jffi / default.nix
blobef1445da990343dd1921014d3f333114d3627c62
1 { lib, stdenv, fetchFromGitHub, jdk, jre, ant, libffi, texinfo, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "jffi";
5   version = "1.3.9";
7   src = fetchFromGitHub {
8     owner = "jnr";
9     repo = "jffi";
10     rev = "jffi-${version}";
11     sha256 = "sha256-VjZYhMbad+AesANG06umRzqMWj+Ebzu59TYK7Tm/bFo=";
12   };
14   nativeBuildInputs = [ jdk ant texinfo pkg-config ];
15   buildInputs = [ libffi ] ;
17   buildPhase = ''
18     # The pkg-config script in the build.xml doesn't work propery
19     # set the lib path manually to work around this.
20     export LIBFFI_LIBS="${libffi}/lib/libffi.so"
22     ant -Duse.system.libffi=1 jar
23     ant -Duse.system.libffi=1 archive-platform-jar
24   '';
26   installPhase = ''
27     mkdir -p $out/share/java
28     cp -r dist/* $out/share/java
29   '';
31   doCheck = true;
32   checkPhase = ''
33     # The pkg-config script in the build.xml doesn't work propery
34     # set the lib path manually to work around this.
35     export LIBFFI_LIBS="${libffi}/lib/libffi.so"
37     ant -Duse.system.libffi=1 test
38   '';
40   meta = with lib; {
41     broken = stdenv.isDarwin;
42     description = "Java Foreign Function Interface ";
43     homepage = "https://github.com/jnr/jffi";
44     platforms = platforms.unix;
45     license = licenses.asl20;
46     maintainers = with maintainers; [ bachp ];
47   };