39 lines
833 B
Nix
39 lines
833 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
zeromq,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "cppzmq";
|
|
version = "4.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeromq";
|
|
repo = "cppzmq";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "sha256-c6IZ5PnuB96NLYHDHdNclYSF4LpqAfFWxVzeP8BzhCE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
propagatedBuildInputs = [ 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 = {
|
|
homepage = "https://github.com/zeromq/cppzmq";
|
|
license = lib.licenses.bsd2;
|
|
description = "C++ binding for 0MQ";
|
|
maintainers = with lib.maintainers; [
|
|
panicgh
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|