nixpkgs/pkgs/development/libraries/libyaml/default.nix

26 lines
518 B
Nix
Raw Normal View History

{ stdenv
, fetchFromGitHub
, autoreconfHook
}:
2019-07-04 10:57:43 +01:00
stdenv.mkDerivation rec {
pname = "libyaml";
2020-06-06 13:04:16 +01:00
version = "0.2.5";
src = fetchFromGitHub {
owner = "yaml";
repo = "libyaml";
rev = version;
2020-06-06 13:04:16 +01:00
sha256 = "18zsnsxc53pans4a01cs4401a2cjk3qi098hi440pj4zijifgcsb";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
homepage = "https://pyyaml.org/";
description = "A YAML 1.1 parser and emitter written in C";
license = licenses.mit;
2018-05-17 08:22:31 +01:00
platforms = platforms.all;
};
}