diff options
author | Arun Isaac | 2023-07-19 14:48:03 +0100 |
---|---|---|
committer | Arun Isaac | 2023-07-19 14:48:03 +0100 |
commit | c36821d443c57a808972bbbb72a699d565bb4484 (patch) | |
tree | 0b712945eb9b0a2c36e3502a0e9f49b2a553dc69 /.guix-channel | |
parent | 38478ff22686afcb74cfdd43a73c7a42710bfca4 (diff) | |
download | genenetwork3-c36821d443c57a808972bbbb72a699d565bb4484.tar.gz |
Make repository a guix channel.
* .guix-channel: New file.
* guix.scm: Move to ...
* .guix/genenetwork3-package.scm: ... here. Convert into a module with public
package variables.
Diffstat (limited to '.guix-channel')
-rw-r--r-- | .guix-channel | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.guix-channel b/.guix-channel new file mode 100644 index 0000000..222b451 --- /dev/null +++ b/.guix-channel @@ -0,0 +1,21 @@ +;; This file lets us present this repo as a Guix channel. + +(channel + (version 0) + (directory ".guix") + (dependencies + (channel + (name guix-bioinformatics) + (url "https://gitlab.com/genenetwork/guix-bioinformatics.git")) + ;; FIXME: guix-bioinformatics depends on guix-past. So, there + ;; should be no reason to explicitly depend on guix-past. But, the + ;; channel does not build otherwise. This is probably a guix bug. + (channel + (name guix-past) + (url "https://gitlab.inria.fr/guix-hpc/guix-past") + (introduction + (channel-introduction + (version 0) + (commit "0c119db2ea86a389769f4d2b9c6f5c41c027e336") + (signer + "3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5")))))) |