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
cm?id=0572737a6218d7390bac352011da47621e18d35b'>packages: 'package-transitive-supported-systems' ignores '%current-target-sys......Ludovic Courtès 2022-02-11tests: Pass #:guile to 'computed-file' & co....Ludovic Courtès 2021-10-31Merge remote-tracking branch 'origin/master' into core-updates-frozenEfraim Flashner 2021-10-25packages: Add 'package-development-inputs'....Ludovic Courtès 2021-09-25gexp: Leave grafting as is when lowering allowed/disallowed references....Ludovic Courtès 2021-09-17Merge branch 'master' into core-updates-frozen...Marius Bakke 2021-09-13packages: Add 'package-definition-location'....Ludovic Courtès 2021-07-14packages: Define this-package-input and this-package-native-input....Maxime Devos 2021-07-11packages: Allow inputs to be plain package lists....Ludovic Courtès 2021-07-01packages: 'package-derivation' honors 'system' again....Ludovic Courtès 2021-03-30packages: Call 'bag-grafts' only on the tip of the package graph....Ludovic Courtès 2021-03-30packages: 'expand-input' accepts any file-like object....Ludovic Courtès 2021-03-30packages: Turn 'bag->derivation' into a monadic procedure....Ludovic Courtès 2021-03-30build-system: Rewrite using gexps....Ludovic Courtès 2021-02-03Merge branch 'master' into core-updatesChristopher Baines 2021-02-01tests: Optimize 'fold-available-packages' test....Ludovic Courtès 2021-01-26build-systems/gnu: Allow unpacking/repacking more kind of files....Maxim Cournoyer