guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add go-github-com-robfig-cron.


From: guix-commits
Subject: 01/02: gnu: Add go-github-com-robfig-cron.
Date: Thu, 29 Aug 2019 15:53:23 -0400 (EDT)

arunisaac pushed a commit to branch master
in repository guix.

commit e30bdd49a5909749baab9fcf566e14e4aac22ccb
Author: Arun Isaac <address@hidden>
Date:   Mon Aug 19 17:27:17 2019 +0530

    gnu: Add go-github-com-robfig-cron.
    
    * gnu/packages/golang.scm (go-github-com-robfig-cron): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 01de446..950ba9f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -15,6 +15,7 @@
 ;;; Copyright @ 2018, 2019 Katherine Cox-Buday <address@hidden>
 ;;; Copyright @ 2019 Giovanni Biscuolo <address@hidden>
 ;;; Copyright @ 2019 Alex Griffin <address@hidden>
+;;; Copyright © 2019 Arun Isaac <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3640,3 +3641,26 @@ stack traces.  It simplifies the traces to make salient 
information more visible
 and aid debugging.")
     (home-page "https://github.com/maruel/panicparse";)
     (license license:asl2.0)))
+
+(define-public go-github-com-robfig-cron
+  (package
+    (name "go-github-com-robfig-cron")
+    (version "3.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/robfig/cron";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32
+         "0bvq5gxkhyj21lq32nma23i4dpwp7bswnp2yks6372ilkcyisx2z"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:import-path "github.com/robfig/cron"))
+    (home-page "https://godoc.org/github.com/robfig/cron";)
+    (synopsis "Cron library for Go")
+    (description "This package provides a cron library for Go.  It implements
+a cron spec parser and job runner.")
+    (license license:expat)))



reply via email to

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