python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libmpack / default.nix
blobedb692d512d753b5707676bfe77c5d3d47495265
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   makeFlags = [
14     "LIBTOOL=${libtool}/bin/libtool"
15     "PREFIX=$(out)"
16     "config=release"
17   ];
19   meta = with lib; {
20     description = "Simple implementation of msgpack in C";
21     homepage = "https://github.com/tarruda/libmpack/";
22     license = licenses.mit;
23     maintainers = with maintainers; [ lovek323 ];
24     platforms = platforms.linux ++ platforms.darwin;
25   };