summary refs log blame commit diff
path: root/pkgs/development/libraries/libyaml/default.nix
blob: 03e7e4715f8869315691a38e3403e1dc38773821 (plain) (tree)
1
2
3
4
5
6
7
8
9
             


                 
 

                         
                    
 



                         
                                                                    

    

                                         
                    
                                     
                                                               
                           
                              

    
{ lib, stdenv
, fetchFromGitHub
, autoreconfHook
}:

stdenv.mkDerivation rec {
  pname = "libyaml";
  version = "0.2.5";

  src = fetchFromGitHub {
    owner = "yaml";
    repo = "libyaml";
    rev = version;
    sha256 = "18zsnsxc53pans4a01cs4401a2cjk3qi098hi440pj4zijifgcsb";
  };

  nativeBuildInputs = [ autoreconfHook ];

  meta = with lib; {
    homepage = "https://pyyaml.org/";
    description = "A YAML 1.1 parser and emitter written in C";
    license = licenses.mit;
    platforms = platforms.all;
  };
}