2014-01-25 01:28:19 +00:00
|
|
|
{ stdenv, fetchurl, ant, jdk, junit }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "junixsocket-1.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://junixsocket.googlecode.com/files/${name}-src.tar.bz2";
|
|
|
|
sha256 = "0c6p8vmiv5nk8i6g1hgivnl3mpb2k3lhjjz0ss9dlirisfrxf1ym";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ ant jdk junit ];
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
sed -i 's|/usr/bin/||' build.xml
|
2014-01-27 12:51:22 +00:00
|
|
|
substituteInPlace src/main/org/newsclub/net/unix/NativeUnixSocketConfig.java \
|
|
|
|
--replace /opt/newsclub/lib-native $out/lib
|
2014-01-25 01:28:19 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = "ant";
|
|
|
|
|
|
|
|
ANT_ARGS =
|
|
|
|
"-Dskip32=true -Dant.build.javac.source=1.6"
|
|
|
|
+ stdenv.lib.optionalString stdenv.isDarwin " -DisMac=true";
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out/share/java $out/lib
|
|
|
|
cp -v dist/*.jar $out/share/java
|
|
|
|
cp -v lib-native/*.so lib-native/*.dylib $out/lib/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A Java/JNI library for using Unix Domain Sockets from Java";
|
|
|
|
homepage = https://code.google.com/p/junixsocket/;
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|