cppzmq: 4.2.3 -> 4.3.0

wip/yesman
Nikolay Amiantov 5 years ago
parent fbda7ca802
commit 7ec20f99e6
  1. 10
      pkgs/development/libraries/cppzmq/default.nix

@ -2,18 +2,24 @@
stdenv.mkDerivation rec {
name = "cppzmq-${version}";
version = "4.2.3";
version = "4.3.0";
src = fetchFromGitHub {
owner = "zeromq";
repo = "cppzmq";
rev = "v${version}";
sha256 = "1yjs25ra5s8zs0rhk50w3f1rrrl80hhq784lwdhh1m3risk740sa";
sha256 = "1g45cdny1m08zw4l261bqcqfdb825mnwjwqcf35bkyc03fr4213l";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zeromq ];
cmakeFlags = [
# Tests try to download googletest at compile time; there is no option
# to use a system one and no simple way to download it beforehand.
"-DCPPZMQ_BUILD_TESTS=OFF"
];
meta = with stdenv.lib; {
homepage = https://github.com/zeromq/cppzmq;
license = licenses.bsd2;

Loading…
Cancel
Save