aboutsummaryrefslogtreecommitdiff
;;; copyright.el --- Insert a Guix copyright.

;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>

;; 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 this program.  If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package provides skeleton to insert a copyright with `guix-copyright'.

;;; Code:

(define-skeleton guix-copyright
  "Insert a copyright by $USER notice at cursor."
  "FULL_NAME <MAIL_ADDRESS>: "
  comment-start
  ";; Copyright © " `(format-time-string "%Y") " "
  (or (format "%s <%s>" user-full-name user-mail-address) str)
  comment-end)

;;; copyright.el ends here
/span>Zheng Junjie 2024-05-22image: Raise error when use both grub-efi* bootloader and not gpt image....Zheng Junjie 2024-05-13file-systems: Add "virtiofs" to the list of pseudo file system types....Massimo Zaniboni 2024-04-29linux-initrd: Further strip the static Guile....Ludovic Courtès 2024-04-29locale: Shrink ‘%default-locale-definitions’ from 34 to 10 locales....Ludovic Courtès 2024-04-29system: Remove ‘glibc-2.33’ from ‘%default-locale-libcs’....Ludovic Courtès 2024-04-18system: Remove nss-certs from OS templates, adjust doc....Maxim Cournoyer 2024-04-17linux-initrd: Gracefully handle lack of “modules.builtin” file....Ludovic Courtès 2024-04-17vm: Always use a native emulator in ‘guix system vm’....Ludovic Courtès 2024-04-08mapped-devices: luks: Specify modules needed at the top-level....Ludovic Courtès 2024-04-08mapped-devices: <mapped-device-type> can specify modules to import....Ludovic Courtès 2024-03-31vm: If not the same local architecture, don't enable kvm....Zheng Junjie 2024-03-31vm: add arguments to use virt machine type for qemu-riscv64....Zheng Junjie 2024-03-31linux-initrd: don't add hid-apple module for riscv64-linux....Zheng Junjie 2024-03-31vm: When target riscv64-linux, use u-boot-qemu-riscv64-bootloader....Zheng Junjie 2024-03-31vm: use #$ for kernel-arguments....Zheng Junjie