backporting master into devel (devel was behind master)

This commit is contained in:
Jean-François GUILLAUME 2022-05-10 10:00:46 +02:00
parent cc5cc2847f
commit 54560ad0ea
GPG key ID: 38751DAE145EFB5A
34 changed files with 10115 additions and 1803 deletions

29
README.md Normal file
View file

@ -0,0 +1,29 @@
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 ![CI Badge](https://guix.glicid.fr/jobset/glicid/badge.svg?type=1) : stable release of our channel
- devel ![CI Badge](https://guix.glicid.fr/jobset/glicid-devel/badge.svg?type=1) : 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"))
```