- Scheme 83.9%
- Makefile 9.4%
- M4 5%
- Shell 1.6%
- Tree-sitter Query 0.1%
| .guix | ||
| build-aux | ||
| concierge | ||
| doc | ||
| scripts | ||
| .envrc | ||
| .gitignore | ||
| .guix-authorizations | ||
| .guix-channel | ||
| AUTHORS | ||
| ChangeLog | ||
| configure.ac | ||
| COPYING | ||
| guix.scm | ||
| HACKING | ||
| hall.scm | ||
| Makefile.am | ||
| manifest.scm | ||
| NEWS | ||
| pre-inst-env.in | ||
| README | ||
| README.org | ||
concierge
Running concierge from the main branch
Guix channel
To configure Guix for using this repository as a channel, you need to create a .config/guix/channels.scm file with the following content:
(cons* (channel
(name 'concierge)
(url "https://codeberg.org/fishinthecalculator/concierge.git")
(branch "main")
;; Enable signature verification:
(introduction
(make-channel-introduction
"b95d48ace0a9fe4098b2372952ecc7458655a6aa"
(openpgp-fingerprint
"8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2"))))
%default-channels)
Otherwise, if you already have a .config/guix/channels.scm you can simply prepend this channel to the preexisting ones:
(cons* (channel
(name 'concierge)
(url "https://codeberg.org/fishinthecalculator/concierge.git")
(branch "main")
;; Enable signature verification:
(introduction
(make-channel-introduction
"b95d48ace0a9fe4098b2372952ecc7458655a6aa"
(openpgp-fingerprint
"8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2"))))
(channel
(name 'nonguix)
(url "https://gitlab.com/nonguix/nonguix")
;; Enable signature verification:
(introduction
(make-channel-introduction
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
(openpgp-fingerprint
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
%default-channels)
What is a Guix channel?
A channel is roughly the Guix equivalent of the AUR or container registries. It's a software repository providing Guix package and service definitions.
Building from source
Guix
To build with Guix you just need the guix command available on your system, then you can run:
guix build -f guix.scm
Autotools
To use autotools you need at least the following dependencies:
- autoconf
- automake
- guile
- guile-config
- guile-goblins
- make
- pkg-config
then you can run:
autoreconf -vif
./configure
make
Contributing
All contributions are welcome. If you have commit access please remember to setup the authentication hook with
guix git authenticate --cache-key=channels/concierge --stats b95d48ace0a9fe4098b2372952ecc7458655a6aa "8D10 60B9 6BB8 292E 829B 7249 AED4 1CC1 93B7 01E2"
License
Unless otherwise stated all the files in this repository are to be considered under the GPL 3.0 terms. You are more than welcome to open issues or send patches.