2018-07-27 19:27:48 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "msgpuck";
|
2018-07-27 19:27:48 +01:00
|
|
|
version = "2.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rtsisyk";
|
|
|
|
repo = "msgpuck";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2018-07-27 19:27:48 +01:00
|
|
|
sha256 = "0cjq86kncn3lv65vig9cqkqqv2p296ymcjjbviw0j1s85cfflps0";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = ''A simple and efficient MsgPack binary serialization library in a self-contained header file'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/rtsisyk/msgpuck";
|
2018-07-27 19:27:48 +01:00
|
|
|
license = licenses.bsd2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ izorkin ];
|
|
|
|
};
|
|
|
|
}
|