summary refs log tree commit diff
path: root/pkgs/development/libraries/libmpack/default.nix
blob: 5ac5c9eee96a13180db3ec7bc0fab75284c99af6 (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
26
27
{ stdenv, fetchFromGitHub, libtool }:

stdenv.mkDerivation rec {
  name = "libmpack-${version}";
  version = "1.0.3-rev${rev}";
  rev = "80bd55ea677e70b041f65a4b99438c1f059cce4b";
  src = fetchFromGitHub {
    owner = "tarruda";
    repo = "libmpack";
    inherit rev;
    sha256 = "1whnbgxd5580h59kvc2xgx6ymw7nk9kz6r4ajgsfv6c6h2xbwbl3";
  };
  LIBTOOL = "libtool";
  buildInputs = [ libtool ];
  installPhase = ''
    mkdir -p $out/lib/libmpack
    cp -R build/* $out/lib/libmpack
    rm -rf $out/lib/libmpack/debug
  '';
  meta = with stdenv.lib; {
    description = "Simple implementation of msgpack in C";
    homepage = "https://github.com/tarruda/libmpack/";
    license = licenses.mit;
    maintainers = with maintainers; [ lovek323 garbas ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}