base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / libnats-c / package.nix
blob5d641a386344e59d6ca14b5634a14920c7749ec9
1 { lib, stdenv, fetchFromGitHub
2 , cmake, protobuf, protobufc
3 , libsodium, openssl
4 }:
6 stdenv.mkDerivation rec {
7   pname   = "libnats";
8   version = "3.8.2";
10   src = fetchFromGitHub {
11     owner  = "nats-io";
12     repo   = "nats.c";
13     rev    = "v${version}";
14     sha256 = "sha256-Tn88RRigL6C36AcFhUlLbLyqcqbBR8z6PKAQH4w/mYY=";
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   };