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

26 lines
516 B
Nix
Raw Normal View History

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