summary refs log blame commit diff
path: root/pkgs/development/libraries/libmsgpack/generic.nix
blob: 72943c098ba1800b17f459c4661dadd7b0de9ac7 (plain) (tree)



















                                                             
{ stdenv, cmake
, version, src, patches ? [ ]
, ...
}:

stdenv.mkDerivation rec {
  name = "libmsgpack-${version}";

  inherit src patches;

  buildInputs = [ cmake ];

  meta = with stdenv.lib; {
    description = "MessagePack implementation for C and C++";
    homepage = http://msgpack.org;
    maintainers = with maintainers; [ redbaron wkennington ];
    license = licenses.asl20;
    platforms = platforms.all;
  };
}