summaryrefslogtreecommitdiff
path: root/systems/izumi
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-27 02:28:12 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-27 02:28:12 +0100
commita4de139f26acf877c00b796582abfbcb96e23013 (patch)
tree3949b87df44e8d3781ece49fea5773ae9ba39025 /systems/izumi
parent97baab426bd00a3f8487eb53c39877990d8f093f (diff)
Reorganize the channels.scm file
Squashed commit of the following: commit b13c42e76bafd8ea494700e3be75eb4212231623 Author: Marek Paśnikowski <marek@marekpasnikowski.pl> Date: Sat Jan 27 02:16:29 2024 +0100 Separate data from logic in definition of marekpasnikowski The intent is to implement the "no literals in logic" strategy. commit 0974fba9ac30cfab548b84419c846dd782917a57 Author: Marek Paśnikowski <marek@marekpasnikowski.pl> Date: Sat Jan 27 02:08:04 2024 +0100 Separate data from logic in definition of guix The intent is to implement the "no literals in logic" strategy. commit f30e5406b7508f77a528f50c1c71463eab1bb334 Author: Marek Paśnikowski <marek@marekpasnikowski.pl> Date: Sat Jan 27 01:20:06 2024 +0100 Define marekpasnikowski channel The goal is functional decomposition of the file. commit 762534ac39b88f7a9d0040af4a49d00222496884 Author: Marek Paśnikowski <marek@marekpasnikowski.pl> Date: Sat Jan 27 01:02:14 2024 +0100 Define guix channel The goal is functional decomposition of the file.
Diffstat (limited to 'systems/izumi')
-rw-r--r--systems/izumi/channels.scm49
1 files changed, 31 insertions, 18 deletions
diff --git a/systems/izumi/channels.scm b/systems/izumi/channels.scm
index 290e2a6..71f28c8 100644
--- a/systems/izumi/channels.scm
+++ b/systems/izumi/channels.scm
@@ -1,21 +1,34 @@
( define-module ( systems izumi channels )
#:use-module ( guix channels ) )
-( list
- ( channel
- ( introduction
- ( make-channel-introduction
- "9edb3f66fd807b096b48283debdcddccfea34bad"
- ( openpgp-fingerprint
- "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA" ) ) )
- ( name 'guix )
- ( url "https://git.savannah.gnu.org/git/guix.git" ) )
- ( channel
- ( branch "channel" )
- ( introduction
- ( make-channel-introduction
- "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
- ( openpgp-fingerprint
- "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F" ) ) )
- ( name 'channel )
- ( url "https://git.marekpasnikowski.pl/git/channel.git" ) ) )
+( define guix
+ ( let
+ ( ( introduction
+ ( make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ ( openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA" ) ) )
+ ( name 'guix )
+ ( url "https://git.savannah.gnu.org/git/guix.git" ) )
+ ( channel
+ ( introduction introduction )
+ ( name name )
+ ( url url ) ) ) )
+
+( define marekpasnikowski
+ ( let
+ ( ( branch "channel" )
+ ( introduction
+ ( make-channel-introduction
+ "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
+ ( openpgp-fingerprint
+ "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F" ) ) )
+ ( name 'channel )
+ ( url "https://git.marekpasnikowski.pl/git/channel.git" ) )
+ ( channel
+ ( branch branch )
+ ( introduction introduction )
+ ( name name )
+ ( url url ) ) ) )
+
+( list guix marekpasnikowski )