From ff76ffdfa9f4a9bb009c5cfec214a012c9602fff Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 11 May 2020 07:58:20 +0900 Subject: Rename from `QKGuix` to `guix-channel`. --- README.md | 4 +-- qkguix/packages/emacs-xyz.scm | 64 ------------------------------------------- qkguix/packages/emacs.scm | 35 ----------------------- tojoqk/packages/emacs-xyz.scm | 64 +++++++++++++++++++++++++++++++++++++++++++ tojoqk/packages/emacs.scm | 35 +++++++++++++++++++++++ 5 files changed, 101 insertions(+), 101 deletions(-) delete mode 100644 qkguix/packages/emacs-xyz.scm delete mode 100644 qkguix/packages/emacs.scm create mode 100644 tojoqk/packages/emacs-xyz.scm create mode 100644 tojoqk/packages/emacs.scm diff --git a/README.md b/README.md index 67cb41d..0aaf8d4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# qkguix +# guix-channels -TojoQK's personal packages. \ No newline at end of file +Personal guix packages. diff --git a/qkguix/packages/emacs-xyz.scm b/qkguix/packages/emacs-xyz.scm deleted file mode 100644 index 9739b71..0000000 --- a/qkguix/packages/emacs-xyz.scm +++ /dev/null @@ -1,64 +0,0 @@ -;;; 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) - #:use-module (gnu packages emacs-xyz)) - -(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+)))) - -(define-public emacs-twittering-mode-git - (let ((commit "114891e8fdb4f06b1326a6cf795e49c205cf9e29") - (revision "0")) - (package - (inherit emacs-twittering-mode) - (name "emacs-twittering-mode-git") - (version (git-version "20181121" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/hayamiz/twittering-mode.git") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1w1p5pg3ambixhc5l7490wf5qasw3xv9qg6f0xhfsnqk44fp70ia"))))))) diff --git a/qkguix/packages/emacs.scm b/qkguix/packages/emacs.scm deleted file mode 100644 index 977b8b2..0000000 --- a/qkguix/packages/emacs.scm +++ /dev/null @@ -1,35 +0,0 @@ -;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2020 Masaya Tojo -;;; -;;; 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 . - -(define-module (qkguix packages emacs) - #:use-module (guix packages) - #:use-module (gnu packages emacs) - #:use-module (gnu packages xorg) - #:use-module (guix utils) - #:use-module (srfi srfi-1)) - -(define-public emacs-lucid - (package - (inherit emacs) - (name "emacs-lucid") - (arguments - (substitute-keyword-arguments (package-arguments emacs) - ((#:configure-flags flags) - `(cons* "--with-x-toolkit=lucid" ,flags)))) - (inputs (append `(("libxaw" ,libxaw)) - (alist-delete "gtk+" (package-inputs emacs)))))) diff --git a/tojoqk/packages/emacs-xyz.scm b/tojoqk/packages/emacs-xyz.scm new file mode 100644 index 0000000..bda4696 --- /dev/null +++ b/tojoqk/packages/emacs-xyz.scm @@ -0,0 +1,64 @@ +;;; guix-channel +;;; Copyright © 2020 Masaya Tojo +;;; +;;; This file is part of guix-channel. +;;; +;;; guix-channel 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. +;;; +;;; guix-channel 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 guix-channel. If not, see . + +(define-module (tojoqk packages emacs-xyz) + #:use-module (guix packages) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix git-download) + #:use-module (guix build-system emacs) + #:use-module (gnu packages emacs-xyz)) + +(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+)))) + +(define-public emacs-twittering-mode-git + (let ((commit "114891e8fdb4f06b1326a6cf795e49c205cf9e29") + (revision "0")) + (package + (inherit emacs-twittering-mode) + (name "emacs-twittering-mode-git") + (version (git-version "20181121" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hayamiz/twittering-mode.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1w1p5pg3ambixhc5l7490wf5qasw3xv9qg6f0xhfsnqk44fp70ia"))))))) diff --git a/tojoqk/packages/emacs.scm b/tojoqk/packages/emacs.scm new file mode 100644 index 0000000..0a47f62 --- /dev/null +++ b/tojoqk/packages/emacs.scm @@ -0,0 +1,35 @@ +;;; guix-channel +;;; Copyright © 2020 Masaya Tojo +;;; +;;; This file is part of guix-channel. +;;; +;;; guix-channel 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. +;;; +;;; guix-channel 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 guix-channel. If not, see . + +(define-module (tojoqk packages emacs) + #:use-module (guix packages) + #:use-module (gnu packages emacs) + #:use-module (gnu packages xorg) + #:use-module (guix utils) + #:use-module (srfi srfi-1)) + +(define-public emacs-lucid + (package + (inherit emacs) + (name "emacs-lucid") + (arguments + (substitute-keyword-arguments (package-arguments emacs) + ((#:configure-flags flags) + `(cons* "--with-x-toolkit=lucid" ,flags)))) + (inputs (append `(("libxaw" ,libxaw)) + (alist-delete "gtk+" (package-inputs emacs)))))) -- cgit v1.2.3