This is an automated email from the git hooks/post-receive script.

wigust pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new dec43e9  gnu: Add git-cal.
dec43e9 is described below

commit dec43e9f888826a86e9554dcdb5d95b42511d7c4
Author: Oleg Pykhalov <[email protected]>
AuthorDate: Sat Aug 1 12:46:14 2020 +0300

    gnu: Add git-cal.
    
    * gnu/packages/version-control.scm (git-cal): New variable.
---
 gnu/packages/version-control.scm | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 2d26d05..28c4093 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -17,7 +17,7 @@
 ;;; Copyright © 2017 André <[email protected]>
 ;;; Copyright © 2017, 2018, 2020 Marius Bakke <[email protected]>
 ;;; Copyright © 2017 Stefan Reichör <[email protected]>
-;;; Copyright © 2017 Oleg Pykhalov <[email protected]>
+;;; Copyright © 2017, 2020 Oleg Pykhalov <[email protected]>
 ;;; Copyright © 2018 Sou Bunnbu <[email protected]>
 ;;; Copyright © 2018 Christopher Baines <[email protected]>
 ;;; Copyright © 2018 Timothy Sample <[email protected]>
@@ -55,6 +55,7 @@
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system go)
+  #:use-module (guix build-system perl)
   #:use-module (guix build-system python)
   #:use-module (guix build-system trivial)
   #:use-module (gnu packages apr)
@@ -632,6 +633,26 @@ indistinguishable from Git's.  You (or other contributors) 
can always fall back
 on @command{git}, and use any regular Git hosting service.")
     (license license:expat)))
 
+(define-public git-cal
+  (package
+    (name "git-cal")
+    (version "0.9.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/k4rthik/git-cal";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "08s9sif3qlk5n2dqpzq5yjczggnqlnxldljspjdqgpfydb2dqg3z"))))
+    (build-system perl-build-system)
+    (home-page "https://github.com/k4rthik/git-cal/";)
+    (synopsis "GitHub like contributions calendar for terminal")
+    (description "@code{git-cal} is a script to view commits calendar similar
+to GitHub contributions calendar.")
+    (license license:expat)))
+
 (define-public libgit2
   (package
     (name "libgit2")

Reply via email to