summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-08-03 13:45:22 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-08-03 13:45:22 +0200
commit2c5149d5ca84b28d371dffa2c5ea3cae53c93a8e (patch)
tree4dd9410e43fa7880cb3e1e9c82dfb81725a36d2b
parentc60c42fc64d9d95b707fc90b7bc08beffd5416af (diff)
guix: add channels and manifest
-rw-r--r--channels.scm28
-rw-r--r--manifest.scm5
2 files changed, 33 insertions, 0 deletions
diff --git a/channels.scm b/channels.scm
new file mode 100644
index 0000000..9badc58
--- /dev/null
+++ b/channels.scm
@@ -0,0 +1,28 @@
+(list (channel
+ (name 'nonguix)
+ (url "https://gitlab.com/nonguix/nonguix")
+ (branch "master")
+ (commit
+ "dbbd1bd9a09ffeac7bdd30e7df90d59f08cd65fb")
+ (introduction
+ (make-channel-introduction
+ "897c1a470da759236cc11798f4e0a5f7d4d59fbc"
+ (openpgp-fingerprint
+ "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
+ (channel
+ (name 'ekaitz)
+ (url "git://git.elenq.tech/guix-packages")
+ (branch "master")
+ (commit
+ "214f27145ea93dcab99929586df3259acf77d7c9"))
+ (channel
+ (name 'guix)
+ (url "https://git.savannah.gnu.org/git/guix.git")
+ (branch "master")
+ (commit
+ "03062c7a9fd74d625639e1a325e9cb58d1cd74e3")
+ (introduction
+ (make-channel-introduction
+ "9edb3f66fd807b096b48283debdcddccfea34bad"
+ (openpgp-fingerprint
+ "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))
diff --git a/manifest.scm b/manifest.scm
new file mode 100644
index 0000000..5bfae7a
--- /dev/null
+++ b/manifest.scm
@@ -0,0 +1,5 @@
+;; What follows is a "manifest" equivalent to the command line you gave.
+;; You can store it in a file that you may then pass to any 'guix' command
+;; that accepts a '--manifest' (or '-m') option.
+
+(specifications->manifest (list "zig" "duckdb"))