nixpkgs/pkgs/development/libraries/libyaml/default.nix
Frederik Rietdijk e29cf29086 libyaml: actually use 0.2.2
The archive that was used turned out to be incorrect.
https://github.com/yaml/pyyaml/issues/320

By now a correct tarball has been uploaded but in order
to prevent issues like these we fetch now instead from GitHub.
2019-07-16 11:14:40 +02:00

26 lines
516 B
Nix

{ stdenv
, fetchFromGitHub
, autoreconfHook
}:
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; {
homepage = https://pyyaml.org/;
description = "A YAML 1.1 parser and emitter written in C";
license = licenses.mit;
platforms = platforms.all;
};
}