linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libmpack / default.nix
blobb62da40499cddfa45b016f899d9500abacd3e91b
1 { lib, stdenv, fetchFromGitHub, libtool }:
3 stdenv.mkDerivation rec {
4   pname = "libmpack";
5   version = "1.0.5";
6   src = fetchFromGitHub {
7     owner = "libmpack";
8     repo = "libmpack";
9     rev = version;
10     sha256 = "0rai5djdkjz7bsn025k5489in7r1amagw1pib0z4qns6b52kiar2";
11   };
13   nativeBuildInputs = [ libtool ];
15   makeFlags = [ "LIBTOOL=libtool" "PREFIX=$(out)" ];
17   meta = with lib; {
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;
23   };