formatting

This commit is contained in:
Jean-François GUILLAUME 2021-12-03 11:56:14 +01:00
parent c40cfefa68
commit c63ce36a99
GPG key ID: 38751DAE145EFB5A
9 changed files with 423 additions and 858 deletions

View file

@ -2,49 +2,40 @@
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (gnu packages virtualization)
#:use-module (gnu packages storage) ;; «regular» ceph is defined here
#:use-module (glicid packages storage) ;; a «more up to date» version MAY be here
#:use-module (gnu packages storage)
#:use-module (glicid packages storage)
)
;;;;;;;;
(define-public qemu-with-rbd
(package
(inherit qemu)
(name "qemu-with-rbd")
(arguments
(substitute-keyword-arguments
`(#:tests? #f
,@(package-arguments qemu)))
(substitute-keyword-arguments `(
#:tests? #f
,@(package-arguments qemu)
))
)
(inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph
,@(package-inputs qemu)))
(inputs `(
("ceph:lib", ceph "lib")
,@(package-inputs qemu)
))
)
)
(define-public qemu-minimal-with-rbd
(package
(inherit qemu-minimal)
(name "qemu-minimal-with-rbd")
(arguments
(substitute-keyword-arguments
`(#:tests? #f
,@(package-arguments qemu-minimal)))
(substitute-keyword-arguments `(
#:tests? #f
,@(package-arguments qemu-minimal)
))
)
(inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph
,@(package-inputs qemu-minimal)))
(inputs `(
("ceph:lib", ceph "lib" )
,@(package-inputs qemu-minimal)
))
)
)
;;; glicid/virtualizationvirtualization.scm ends here