1 { lib, stdenv, fetchFromGitHub, libtool }:
3 stdenv.mkDerivation rec {
6 src = fetchFromGitHub {
10 sha256 = "0rai5djdkjz7bsn025k5489in7r1amagw1pib0z4qns6b52kiar2";
13 nativeBuildInputs = [ libtool ];
15 makeFlags = [ "LIBTOOL=libtool" "PREFIX=$(out)" ];
18 description = "Simple implementation of msgpack in C";
19 homepage = "https://github.com/tarruda/libmpack/";
20 license = licenses.mit;
21 maintainers = with maintainers; [ lovek323 ];
22 platforms = platforms.linux ++ platforms.darwin;