nixpkgs/pkgs/development/libraries/java/jzmq/default.nix
Danny Wilson d6a812332c Make Storm conf and log path configurable via symlinks.
- The bin/storm script makes too many assumptions about file locations and java classpath that I couldn't figure out a better way.

Fix jzmq build on NixOS: java source was treated as ASCII.
2013-09-02 12:20:16 +02:00

27 lines
783 B
Nix

{stdenv, fetchgit, automake, autoconf, libtool, pkgconfig, zeromq2, jdk}:
stdenv.mkDerivation rec {
name = "jzmq-2.1.0";
src = fetchgit {
url = git://github.com/zeromq/jzmq.git;
rev = "946fd39780423b2df6e5efd9fa2cd863fd79c9db";
};
buildInputs = [ automake autoconf libtool pkgconfig zeromq2 jdk ];
preConfigurePhases = ["./autogen.sh"];
preConfigure = ''
sed -i -e 's|(JAVAC)|(JAVAC) -encoding utf8|' src/Makefile.in
${if stdenv.system == "x86_64-darwin" then
'' sed -i -e 's~/Headers~/include~' -e 's~_JNI_INC_SUBDIRS=\".*\"~_JNI_INC_SUBDIRS=\"darwin\"~' configure
'' else ""}
'';
maintainers = [ stdenv.lib.maintainers.blue ];
meta = {
homepage = "http://www.zeromq.org";
description = "Java bindings for ZeroMQ";
};
}