mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
services: bffe: Use guile from the package.
Rather than hardcoding a particular guile in the service definition. * gnu/services/guix.scm (bffe-shepherd-services): Use guile from the package. * gnu/packages/package-management.scm (bffe)[inputs]: Remove unnecessary guile-next input.
This commit is contained in:
parent
69580997bd
commit
9c9d6c3dab
2 changed files with 1 additions and 3 deletions
|
@ -992,8 +992,6 @@ (define-public bffe
|
||||||
guile-fibers-1.3
|
guile-fibers-1.3
|
||||||
guile-prometheus
|
guile-prometheus
|
||||||
guile-lib))
|
guile-lib))
|
||||||
(inputs
|
|
||||||
(list guile-next))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list guile-gnutls
|
(list guile-gnutls
|
||||||
guile-json-4
|
guile-json-4
|
||||||
|
|
|
@ -1090,7 +1090,7 @@ (define start-script
|
||||||
(append
|
(append
|
||||||
(list #:pid-file "/var/run/bffe/pid")
|
(list #:pid-file "/var/run/bffe/pid")
|
||||||
#$(bffe-configuration-arguments config)))))
|
#$(bffe-configuration-arguments config)))))
|
||||||
#:guile guile-3.0))
|
#:guile (lookup-package-native-input bffe-package "guile-next")))
|
||||||
|
|
||||||
(match-record config <bffe-configuration>
|
(match-record config <bffe-configuration>
|
||||||
(package user group arguments extra-environment-variables)
|
(package user group arguments extra-environment-variables)
|
||||||
|
|
Loading…
Reference in a new issue