From aeec238d164da14f6bcd7ff10bb6172ca392f3b8 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sun, 12 Apr 2020 01:34:32 +0900 Subject: * qkguix: Add emacs-japanese-holidays. --- qkguix/packages/emacs-xyz.scm | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 qkguix/packages/emacs-xyz.scm diff --git a/qkguix/packages/emacs-xyz.scm b/qkguix/packages/emacs-xyz.scm new file mode 100644 index 0000000..486969a --- /dev/null +++ b/qkguix/packages/emacs-xyz.scm @@ -0,0 +1,46 @@ +;;; QKGuix --- Functional package management for QKGuix +;;; Copyright © 2020 Masaya Tojo +;;; +;;; This file is part of QKGuix. +;;; +;;; QKGuix 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. +;;; +;;; QKGuix 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 QKGuix. If not, see . + +(define-module (qkguix packages emacs-xyz) + #:use-module (guix packages) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix git-download) + #:use-module (guix build-system emacs)) + +(define-public emacs-japanese-holidays + (let ((commit "45e70a6eaf4a555fadc58ab731d522a037a81997") + (revision "0")) + (package + (name "emacs-japanese-holidays") + (version (git-version "1.190317" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emacs-jp/japanese-holidays.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "041rww8ngvjmgkiviqwq6wci8wgh4bs0wjjc8v8lqpwqhbzf65jy")))) + (build-system emacs-build-system) + (home-page "https://github.com/emacs-jp/japanese-holidays.git") + (synopsis "Calendar functions for the Japanese calendar") + (description + "This utility defines Japanese holiday for calendar function. +This also enables to display weekends or any weekday with preferred face.") + (license license:gpl2+)))) -- cgit v1.2.3