2017-07-27 13:52:30 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, zeromq }:
|
2014-11-07 23:57:34 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cppzmq";
|
2020-01-20 03:53:44 +00:00
|
|
|
version = "4.6.0";
|
2014-11-07 23:57:34 +00:00
|
|
|
|
2016-01-13 15:45:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zeromq";
|
|
|
|
repo = "cppzmq";
|
2017-07-27 13:52:30 +01:00
|
|
|
rev = "v${version}";
|
2020-01-20 03:53:44 +00:00
|
|
|
sha256 = "19acx2bzi4n6fdnfgkja1nds7m1bwg8lw5vfcijrx9fv75pa7m8h";
|
2014-11-07 23:57:34 +00:00
|
|
|
};
|
|
|
|
|
2017-07-27 13:52:30 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ zeromq ];
|
2014-11-07 23:57:34 +00:00
|
|
|
|
2019-06-03 09:01:42 +01:00
|
|
|
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"
|
|
|
|
];
|
|
|
|
|
2014-11-07 23:57:34 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/zeromq/cppzmq";
|
2014-11-07 23:57:34 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
description = "C++ binding for 0MQ";
|
2015-05-14 18:09:10 +01:00
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2014-11-07 23:57:34 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|