python312Packages.icontract: relax deps (#380554)
[NixPkgs.git] / pkgs / by-name / az / azmq / package.nix
blob2ec9e1cf2bbe3cef288d0abd6cd9ed39d3d1aaf0
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   boost,
6   cmake,
7   ninja,
8   zeromq,
9   catch2,
12 stdenv.mkDerivation {
13   pname = "azmq";
14   version = "unstable-2023-03-23";
16   src = fetchFromGitHub {
17     owner = "zeromq";
18     repo = "azmq";
19     rev = "2c1adac46bced4eb74ed9be7c74563bb113eaacf";
20     hash = "sha256-4o1CHlg9kociIL6QN/kU2cojPvFRhtjFmKIAz0dapUM=";
21   };
23   nativeBuildInputs = [
24     cmake
25     ninja
26   ];
28   buildInputs = [
29     boost
30     catch2
31     zeromq
32   ];
34   # Broken for some reason on this platform.
35   doCheck = !(stdenv.hostPlatform.isAarch64 && stdenv.hostPlatform.isLinux);
37   meta = with lib; {
38     homepage = "https://github.com/zeromq/azmq";
39     license = licenses.boost;
40     description = "C++ language binding library integrating ZeroMQ with Boost Asio";
41     maintainers = with maintainers; [ azahi ];
42     platforms = platforms.unix;
43   };