python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libnats-c / default.nix
blob781e62982b38bdcdfacb57d74c442ff62b297683
1 { lib, stdenv, fetchFromGitHub
2 , cmake, protobuf, protobufc
3 , libsodium, openssl
4 }:
6 stdenv.mkDerivation rec {
7   pname   = "libnats";
8   version = "3.4.1";
10   src = fetchFromGitHub {
11     owner  = "nats-io";
12     repo   = "nats.c";
13     rev    = "v${version}";
14     sha256 = "sha256-Mbmd1bhFnc4feC0bnOa5mD15DxvY4Sgftx3Ep/7Cdp4=";
15   };
17   nativeBuildInputs = [ cmake ];
18   buildInputs = [ libsodium openssl protobuf protobufc ];
20   separateDebugInfo = true;
21   outputs = [ "out" "dev" ];
23   # https://github.com/nats-io/nats.c/issues/542
24   postPatch = ''
25     substituteInPlace src/libnats.pc.in \
26       --replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
27   '';
29   meta = with lib; {
30     description = "C API for the NATS messaging system";
31     homepage    = "https://github.com/nats-io/nats.c";
32     license     = licenses.asl20;
33     platforms   = platforms.unix;
34     maintainers = with maintainers; [ thoughtpolice ];
35   };