commit 47941f74854b0ecc40bcd3a4b88710f12f72183a
parent 59e7c530403f40a06111a6809cabdfc3abcda7ed
Author: Yuval Langer <yuval.langer@gmail.com>
Date: Sun, 25 Feb 2024 23:49:09 +0200
Add license notice and change a bit of package imports in guile-xyz.
Diffstat:
4 files changed, 92 insertions(+), 14 deletions(-)
diff --git a/kakafarm/packages/emacs-xyz.scm b/kakafarm/packages/emacs-xyz.scm
@@ -1,3 +1,22 @@
+;;; Kakafarm's Guix Channel
+;;; Copyright © 2023-2024 Yuval Langer <yuval.langer@gmail.com>
+;;;
+;;; This file is part of Kakafarm's Guix Channel.
+;;;
+;;; Kakafarm's 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.
+;;;
+;;; Kakafarm's 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 Kakafarm's Guix Channel. If not, see
+;;; <http://www.gnu.org/licenses/>.
+
(define-module (kakafarm packages emacs-xyz)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages speech)
diff --git a/kakafarm/packages/guile-xyz.scm b/kakafarm/packages/guile-xyz.scm
@@ -1,18 +1,39 @@
-(define-module (kakafarm packages guile-xyz))
+;;; Kakafarm's Guix Channel
+;;; Copyright © 2023-2024 Yuval Langer <yuval.langer@gmail.com>
+;;;
+;;; This file is part of Kakafarm's Guix Channel.
+;;;
+;;; Kakafarm's 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.
+;;;
+;;; Kakafarm's 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 Kakafarm's Guix Channel. If not, see
+;;; <http://www.gnu.org/licenses/>.
-(use-modules (gnu packages base)
- (gnu packages bash)
- (gnu packages guile)
- (gnu packages guile-xyz)
- (gnu packages linux)
- (gnu packages speech)
- (gnu packages xdisorg)
- (gnu packages)
- (guix build-system guile)
- (guix gexp)
- (guix git-download)
- ((guix licenses) #:prefix license:)
- (guix packages))
+(define-module (kakafarm packages guile-xyz)
+ #:use-module (ice-9 textual-ports)
+
+ #:use-module (gnu packages base)
+ #:use-module (gnu packages bash)
+ #:use-module (gnu packages guile)
+ #:use-module (gnu packages guile-xyz)
+ #:use-module (gnu packages linux)
+ #:use-module (gnu packages speech)
+ #:use-module (gnu packages xdisorg)
+ #:use-module (gnu packages)
+
+ #:use-module (guix build-system guile)
+ #:use-module (guix gexp)
+ #:use-module (guix git-download)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages))
(define-public guile-clipboard-speaker
(let ((commit-string "ba5fa866087b93fae966640eed37387ea5a74e32")
diff --git a/kakafarm/packages/rust-apps.scm b/kakafarm/packages/rust-apps.scm
@@ -1,3 +1,22 @@
+;;; Kakafarm's Guix Channel
+;;; Copyright © 2023-2024 Yuval Langer <yuval.langer@gmail.com>
+;;;
+;;; This file is part of Kakafarm's Guix Channel.
+;;;
+;;; Kakafarm's 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.
+;;;
+;;; Kakafarm's 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 Kakafarm's Guix Channel. If not, see
+;;; <http://www.gnu.org/licenses/>.
+
(define-module (kakafarm packages rust-apps)
#:use-module (guix build-system cargo)
#:use-module (guix download)
diff --git a/kakafarm/packages/texinfo-documents.scm b/kakafarm/packages/texinfo-documents.scm
@@ -1,3 +1,22 @@
+;;; Kakafarm's Guix Channel
+;;; Copyright © 2023-2024 Yuval Langer <yuval.langer@gmail.com>
+;;;
+;;; This file is part of Kakafarm's Guix Channel.
+;;;
+;;; Kakafarm's 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.
+;;;
+;;; Kakafarm's 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 Kakafarm's Guix Channel. If not, see
+;;; <http://www.gnu.org/licenses/>.
+
(define-module (kakafarm packages texinfo-documents)
#:use-module (gnu packages base)
#:use-module (gnu packages bash)