guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: Add libyaml.


From: Ricardo Wurmus
Subject: 01/02: gnu: Add libyaml.
Date: Fri, 20 Feb 2015 18:32:15 +0000

rekado pushed a commit to branch master
in repository guix.

commit 5eb86b64d19ea1afeb1f6f21994a29ebbd9005b8
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Feb 20 17:35:09 2015 +0100

    gnu: Add libyaml.
    
    * gnu/packages/web.scm (libyaml): New variable.
---
 gnu/packages/web.scm |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 308434f..5296c43 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -799,3 +799,23 @@ select or poll.")
 server).  It was primarily designed to be used by one person or a small group
 of people.")
     (license l:expat)))
+
+(define-public libyaml
+  (package
+    (name "libyaml")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://pyyaml.org/download/libyaml/yaml-";
+             version ".tar.gz"))
+       (sha256
+        (base32
+         "1vrv5ly58bkmcyc049ad180f2m8iav6l9h3v8l2fqdmrny7yx1zs"))))
+    (build-system gnu-build-system)
+    (home-page "http://pyyaml.org/wiki/LibYAML";)
+    (synopsis "YAML 1.1 parser and emitter written in C")
+    (description
+     "LibYAML is a YAML 1.1 parser and emitter written in C.")
+    (license l:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]