gnu: shepherd: Add Guile 2.0 variant.

* gnu/packages/admin.scm (guile2.0-shepherd): New variable.
This commit is contained in:
Ludovic Courtès 2020-04-21 16:29:41 +02:00
parent e3358a831e
commit 7681246325
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -241,6 +241,16 @@ (define-public guile3.0-shepherd
(inputs
`(("guile" ,guile-next)))))
(define-public guile2.0-shepherd
(package
(inherit shepherd)
(name "guile2.0-shepherd")
(native-inputs
`(("pkg-config" ,pkg-config)
("guile" ,guile-2.0)))
(inputs
`(("guile" ,guile-2.0)))))
(define-public cloud-utils
(package
(name "cloud-utils")