diff options
-rw-r--r-- | channels.scm | 28 | ||||
-rw-r--r-- | manifest.scm | 5 |
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")) |