python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libyaml / default.nix
blob03e7e4715f8869315691a38e3403e1dc38773821
1 { lib, stdenv
2 , fetchFromGitHub
3 , autoreconfHook
4 }:
6 stdenv.mkDerivation rec {
7   pname = "libyaml";
8   version = "0.2.5";
10   src = fetchFromGitHub {
11     owner = "yaml";
12     repo = "libyaml";
13     rev = version;
14     sha256 = "18zsnsxc53pans4a01cs4401a2cjk3qi098hi440pj4zijifgcsb";
15   };
17   nativeBuildInputs = [ autoreconfHook ];
19   meta = with lib; {
20     homepage = "https://pyyaml.org/";
21     description = "A YAML 1.1 parser and emitter written in C";
22     license = licenses.mit;
23     platforms = platforms.all;
24   };