summary refs log tree commit diff
path: root/pkgs/development/libraries/msgpuck/default.nix
blob: 0411a8bf6237f4e7976800989fc9c229659299ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchFromGitHub, cmake, pkg-config }:

stdenv.mkDerivation rec {
  pname = "msgpuck";
  version = "2.0";

  src = fetchFromGitHub {
    owner = "rtsisyk";
    repo = "msgpuck";
    rev = version;
    sha256 = "0cjq86kncn3lv65vig9cqkqqv2p296ymcjjbviw0j1s85cfflps0";
  };

  outputs = [ "out" "dev" ];

  nativeBuildInputs = [ cmake pkg-config ];

  meta = with stdenv.lib; {
     description = ''A simple and efficient MsgPack binary serialization library in a self-contained header file'';
     homepage = "https://github.com/rtsisyk/msgpuck";
     license = licenses.bsd2;
     platforms = platforms.linux;
     maintainers = with maintainers; [ izorkin ];
 };
}