nixpkgs-suyu/pkgs/development/libraries/java/jzmq/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

30 lines
844 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, zeromq3, jdk }:
stdenv.mkDerivation rec {
name = "jzmq-${version}";
version = "3.1.0";
src = fetchFromGitHub {
owner = "zeromq";
repo = "jzmq";
rev = "v${version}";
sha256 = "1wlzs604mgmqmrgpk4pljx2nrlxzdfi3r8k59qlm90fx8qkqkc63";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ pkgconfig zeromq3 jdk ];
preConfigure = ''
${if stdenv.system == "x86_64-darwin" then
'' sed -i -e 's~/Headers~/include~' -e 's~_JNI_INC_SUBDIRS=\".*\"~_JNI_INC_SUBDIRS=\"darwin\"~' configure
'' else ""}
'';
meta = {
homepage = http://www.zeromq.org;
description = "Java bindings for ZeroMQ";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.lgpl3;
maintainers = [ stdenv.lib.maintainers.vizanto ];
};
}