guix-glicid/glicid/packages/virtualization.scm

30 lines
707 B
Scheme
Raw Normal View History

2021-10-26 22:49:33 +02:00
(define-module (glicid packages virtualization)
2021-11-02 21:38:39 +01:00
#:use-module (guix packages)
2021-11-02 21:46:00 +01:00
#:use-module (guix utils)
2021-10-26 22:45:34 +02:00
#:use-module (gnu packages virtualization)
2021-11-02 22:59:52 +01:00
#:use-module (gnu packages storage) ;; «regular» ceph is defined here
#:use-module (glicid packages storage) ;; a «more up to date» version MAY be here
2021-10-26 22:45:34 +02:00
)
;;;;;;;;
(define-public qemu-with-rbd
(package
2021-11-02 22:53:57 +01:00
(inherit (qemu)
2021-10-26 22:45:34 +02:00
(name "qemu-with-rbd")
(arguments
(substitute-keyword-arguments
`(#:tests? #f
2021-11-02 21:24:03 +01:00
,@(package-arguments qemu)))
2021-10-26 22:45:34 +02:00
)
2021-11-02 22:59:52 +01:00
(inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph
2021-11-02 21:24:03 +01:00
,@(package-inputs qemu)))
2021-10-26 22:45:34 +02:00
)
)
;;; glicid/virtualizationvirtualization.scm ends here