;;; copyright.el --- Insert a Guix copyright. ;; Copyright © 2020 Oleg Pykhalov ;; 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 . ;;; 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 : " comment-start ";; Copyright © " `(format-time-string "%Y") " " (or (format "%s <%s>" user-full-name user-mail-address) str) comment-end) ;;; copyright.el ends here 2070ee637e27be2e050bca7930e660edb4'>refslogtreecommitdiff
>Jordan Moore
AgeCommit message (Expand)Author
2023-06-18gnu: freeipmi: Update to 1.6.11...* gnu/packages/freeipmi.scm (freeipmi): Update to 1.6.11 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Andy Tai
2024-08-31gnu: ppp: Add libxcrypt dependency....* gnu/packages/samba.scm (ppp)[inputs]: Add libxcrypt. Change-Id: I8c04ee82c8bb6836371489d179cf0c7927824ba0 宋文武
2024-08-31gnu: ldb: Remove reference to crypt....* gnu/packages/samba.scm (ldb): Remove reference to crypt header. Change-Id: Idcf43ff9b140d5c7e601d853564833525396e565 Josselin Poiret
2024-08-31gnu: tevent: Remove reference to crypt....* gnu/packages/samba.scm (tevent): Remove reference to crypt header. Change-Id: Ic99712c9374dee1fd5b65c29327fe39aa10eed35 Josselin Poiret
2024-08-31gnu: talloc: Remove reference to crypt....* gnu/packages/samba.scm (talloc): Remove reference to crypt header. Change-Id: I370069acdd7992f2660aae0b1840ea7756befe13 Josselin Poiret
2024-08-31gnu: sambda/pinned: Add libxcrypt dependency....* gnu/packages/samba.scm (samba/pinned): Add libxcrypt dependency. Change-Id: Ie3162623818bea08da2588c02930b842de4f13ae Josselin Poiret
2024-08-31gnu: Remove unneeded libxml2 from native-inputs. (libxslt)...XML_CATALOG_FILES is already set within libxslt so it's unnecessary to include libxml2 for the same effect. * gnu/packages/freedesktop.scm (wayland): Remove obsolete comment. (farstream, elogind, packagekit, accountsservice, plymouth)[native-inputs]: Remove libxml2. * gnu/packages/benchmark.scm (sysbench)[native-inputs]: Ditto. * gnu/packages/cluster.scm (drbd-utils)[native-inputs]: Ditto. * gnu/packages/glib.scm (dbus)[native-inputs]: Ditto. * gnu/packages/gnome.scm (gnome-keyring, glade3, dconf, libsecret, colord) (upower, gnome-settings-daemon)[native-inputs]: Ditto. * gnu/packages/linux.scm (eudev)[native-inputs]: Ditto. * gnu/packages/networking.scm (iputils)[native-inputs]: Ditto. * gnu/packages/ocr.scm (tesseract-ocr)[native-inputs]: Ditto. * gnu/packages/polkit.scm (polkit)[native-inputs]: Ditto. * gnu/packages/samba.scm (samba/pinned)[native-inputs]: Ditto. * gnu/packages/sssd.scm (adcli)[native-inputs]: Ditto. * gnu/packages/terminals.scm (kmscon)[native-inputs]: Ditto. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: Ica3fb5a8e23ad928c53ae508c02777d78c635af0 Bruno Victal