48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
|
{ lib, stdenv, fetchFromGitHub, jdk, jre, ant, libffi, texinfo, pkg-config }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "jffi";
|
||
|
version = "1.3.9";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "jnr";
|
||
|
repo = "jffi";
|
||
|
rev = "jffi-${version}";
|
||
|
sha256 = "sha256-VjZYhMbad+AesANG06umRzqMWj+Ebzu59TYK7Tm/bFo=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ jdk ant texinfo pkg-config ];
|
||
|
buildInputs = [ libffi ] ;
|
||
|
|
||
|
buildPhase = ''
|
||
|
# The pkg-config script in the build.xml doesn't work propery
|
||
|
# set the lib path manually to work around this.
|
||
|
export LIBFFI_LIBS="${libffi}/lib/libffi.so"
|
||
|
|
||
|
ant -Duse.system.libffi=1 jar
|
||
|
ant -Duse.system.libffi=1 archive-platform-jar
|
||
|
'';
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/share/java
|
||
|
cp -r dist/* $out/share/java
|
||
|
'';
|
||
|
|
||
|
doCheck = true;
|
||
|
checkPhase = ''
|
||
|
# The pkg-config script in the build.xml doesn't work propery
|
||
|
# set the lib path manually to work around this.
|
||
|
export LIBFFI_LIBS="${libffi}/lib/libffi.so"
|
||
|
|
||
|
ant -Duse.system.libffi=1 test
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Java Foreign Function Interface ";
|
||
|
homepage = "https://github.com/jnr/jffi";
|
||
|
platforms = platforms.unix;
|
||
|
license = licenses.asl20;
|
||
|
maintainers = with maintainers; [ bachp ];
|
||
|
};
|
||
|
}
|