mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
19 lines
452 B
Nix
19 lines
452 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libyaml";
|
|
version = "0.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://pyyaml.org/download/libyaml/yaml-${version}.tar.gz";
|
|
sha256 = "1karpcfgacgppa82wm2drcfn2kb6q2wqfykf5nrhy20sci2i2a3q";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|