linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libnats-c / default.nix
blob3d1e2b7ac4a340b68b2acc0a26f620eb9a6e7e31
1 { lib, stdenv, fetchFromGitHub
2 , cmake, protobuf, protobufc
3 , libsodium, openssl
4 }:
6 stdenv.mkDerivation rec {
7   pname   = "libnats";
8   version = "2.1.0";
10   src = fetchFromGitHub {
11     owner  = "nats-io";
12     repo   = "nats.c";
13     rev    = "refs/tags/v${version}";
14     sha256 = "16a0f0gvrmyrqvmh6vinqny3qhm6wyzw5ijnn3r82b1gqlpws0fz";
15   };
17   nativeBuildInputs = [ cmake ];
18   buildInputs = [ libsodium openssl protobuf protobufc ];
20   separateDebugInfo = true;
21   outputs = [ "out" "dev" ];
23   meta = with lib; {
24     description = "C API for the NATS messaging system";
25     homepage    = "https://github.com/nats-io/nats.c";
26     license     = licenses.asl20;
27     platforms   = platforms.unix;
28     maintainers = with maintainers; [ thoughtpolice ];
29   };