1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "0cjq86kncn3lv65vig9cqkqqv2p296ymcjjbviw0j1s85cfflps0";
14 outputs = [ "out" "dev" ];
16 nativeBuildInputs = [ cmake pkg-config ];
19 description = "Simple and efficient MsgPack binary serialization library in a self-contained header file";
20 homepage = "https://github.com/rtsisyk/msgpuck";
21 license = licenses.bsd2;
22 platforms = platforms.all;
23 maintainers = with maintainers; [ izorkin ];