guix-commits
[Top][All Lists]
Advanced

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

04/09: gnu: Add node-statsd-parser.


From: guix-commits
Subject: 04/09: gnu: Add node-statsd-parser.
Date: Mon, 20 Jan 2020 02:43:20 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit c8bbff7ee13b6c2b1a97edcf530685216955b471
Author: Efraim Flashner <address@hidden>
AuthorDate: Mon Jan 13 22:04:42 2020 +0200

    gnu: Add node-statsd-parser.
    
    * gnu/packages/node-xyz.scm (node-statsd-parser): New variable.
---
 gnu/packages/node-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 5040c8d..9a874f5 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -90,3 +90,25 @@ user-land JavaScript.")
     (description "Thix package provides a node.js port of the Mersenne Twister
 random number generator.")
     (license license:bsd-3)))
+
+(define-public node-statsd-parser
+  (package
+    (name "node-statsd-parser")
+    (version "0.0.4")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+               (url "https://github.com/dscape/statsd-parser";)
+               (commit version)))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "049rnczsd6pv6bk282q4w72bhqc5cs562djgr7yncy7lk0wzq5j3"))))
+    (build-system node-build-system)
+    (arguments '(#:tests? #f)) ; No tests.
+    (home-page "https://github.com/dscape/statsd-parser";)
+    (synopsis "Streaming parser for the statsd protocol")
+    (description "This package provides a streaming parser for the statsd
+protocol used in @code{node-lynx}.")
+    (license license:asl2.0)))



reply via email to

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