mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
30 lines
859 B
Markdown
30 lines
859 B
Markdown
|
guix-glicid
|
||
|
===
|
||
|
Description
|
||
|
---
|
||
|
We define in this repository packages that we use at GLiCID HPC that are etheir not in guix main channels or with custom definitions.
|
||
|
|
||
|
Two channels here :
|
||
|
- main  : stable release of our channel
|
||
|
- devel  : development release of our channel, things may get broken
|
||
|
|
||
|
How to use
|
||
|
---
|
||
|
To use the guix-glicid channel, add these lines to ~/.config/guix/channels.scm or /etc/guix/channels.scm :
|
||
|
|
||
|
For stable release :
|
||
|
```
|
||
|
(channel
|
||
|
(name 'glicid)
|
||
|
(url "https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git")
|
||
|
(branch "main"))
|
||
|
```
|
||
|
|
||
|
For devel release :
|
||
|
```
|
||
|
(channel
|
||
|
(name 'glicid)
|
||
|
(url "https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git")
|
||
|
(branch "devel"))
|
||
|
```
|