mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
30 lines
898 B
Nix
30 lines
898 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";
|
|
sha256 = "08pqh673fcqwm68hmnsmzrz4vzlwr0x9hdysic5k5mh7z411xzmp";
|
|
};
|
|
|
|
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.vizanto ];
|
|
meta = {
|
|
homepage = "http://www.zeromq.org";
|
|
description = "Java bindings for ZeroMQ";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|