guix-patches
[Top][All Lists]
Advanced

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

[bug#32113] [PATCH 3/5] gnu: Add go-github-com-gorhill-cronexpr.


From: Rouby Pierre-Antoine
Subject: [bug#32113] [PATCH 3/5] gnu: Add go-github-com-gorhill-cronexpr.
Date: Tue, 10 Jul 2018 18:06:07 +0200

* gnu/packages/golang.scm (go-github-com-gorhill-cronexpr): New variable.
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 515d99785..588fb8572 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1890,3 +1890,29 @@ connections in Go langage.")
       (synopsis "Machine management for a container-centric world")
       (description "Lets you create Docker hosts on your computer.")
       (license license:asl2.0))))
+
+(define-public go-github-com-gorhill-cronexpr
+  (let ((commit "f0984319b44273e83de132089ae42b1810f4933b")
+        (revision "0"))
+    (package
+      (name "go-github-com-gorhill-cronexpr")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/gorhill/cronexpr.git";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "0dphhhqy3i7265znv3m8n57l80dmaq6z4hsj5kgd87qd19z8x0l2"))))
+      (build-system go-build-system)
+      (arguments
+       '(#:import-path "github.com/gorhill/cronexpr"))
+      (home-page "https://github.com/gorhill/cronexpr";)
+      (synopsis "Cron expression parser in Go language")
+      (description "This package is cron expression parser in Go language.
+Given a cron expression and a time stamp.")
+      (license (list license:gpl3+
+                     license:asl2.0)))))
-- 
2.17.0






reply via email to

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