aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/gcal.scm
blob: 375bbedff3253281587028e8288cea9729694bba (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages gcal)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses))

(define-public gcal
  (package
    (name "gcal")
    (version "4")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/gcal/gcal-"
                                 version ".tar.xz"))
             (sha256
              (base32
               "0vpzz2pb6xf5wlwyqj9xa29yvx72zdmffb0fv54hdirfn5vciiar"))))
    (build-system gnu-build-system)
    (home-page "http://www.gnu.org/software/gcal")
    (synopsis "Calculating and printing a wide variety of calendars")
    (description
     "Gcal is a program to calculate and print calendars on the
command-line.  Calendars can be printed in 1-month, 3-month or whole-year
views.  In addition, eternal holiday lists can be generated for many
countries, which can be complemented by user-made lists of fixed dates to
make an agenda.  Gcal can also calculate astronomical data, such as the
phases of the moon, and supports alternative calendar formats: Julian,
Gregorian, Islamic, Chinese and more.")
    (license gpl3+)))
d=b3f562921ea4fd116f82cd35f71a6609dd6b1e44'>gnu: libfm-qt: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-themes: Update to 0.14.0....Meiyo Peng 2019-03-14gnu: lxqt-sudo: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-session: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-runner: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-qtplugin: Update to 0.14.0....Meiyo Peng 2019-03-14gnu: lxqt-powermanagement: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-policykit: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-panel: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-openssh-askpass: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-notificationd: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-globalkeys: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-config: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-admin: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: lxqt-about: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: libsysstat: Update to 0.4.2....Meiyo Peng 2019-03-14gnu: liblxqt: Update to 0.14.1....Meiyo Peng 2019-03-14gnu: libqtxdg: Update to 3.3.1....Meiyo Peng 2019-03-14gnu: lxqt-build-tools: Update to 0.6.0....Meiyo Peng 2019-02-25gnu: libqtxdg: Don't use NAME in source URI....Tobias Geerinckx-Rice 2019-02-25gnu: lxqt-build-tools: Don't use NAME in source URI....Tobias Geerinckx-Rice 2019-02-24gnu: screengrab: Don't use NAME in source URI....Tobias Geerinckx-Rice 2019-02-13gnu: LXQt: Adjust imports for KDE move....Marius Bakke 2018-12-13gnu: Fix misplaced commas (unquotes)....Mark H Weaver