mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
glances is now upstream
also defines qemu-minimal-with-rbd
This commit is contained in:
parent
9aadc45b21
commit
f167077a77
2 changed files with 21 additions and 29 deletions
|
@ -537,34 +537,6 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(use-modules (guix packages))
|
;; python-glances is now upstreamed as glances in python-xyz
|
||||||
(use-modules (guix download))
|
|
||||||
(use-modules (gnu packages python))
|
|
||||||
(use-modules (gnu packages python-xyz))
|
|
||||||
(use-modules (guix build-system python))
|
|
||||||
(use-modules (gnu packages xml))
|
|
||||||
|
|
||||||
|
|
||||||
(define-public python-glances
|
|
||||||
(package
|
|
||||||
(name "python-glances")
|
|
||||||
(version "3.2.3.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "Glances" version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0qgwsrg19n4wk9i97xj1i57hwbxacqn6iziliyvjfx063zip2rqm"))))
|
|
||||||
(build-system python-build-system)
|
|
||||||
(propagated-inputs
|
|
||||||
`(("python-defusedxml" ,python-defusedxml)
|
|
||||||
("python-future" ,python-future)
|
|
||||||
("python-psutil" ,python-psutil)))
|
|
||||||
(home-page "https://github.com/nicolargo/glances")
|
|
||||||
(synopsis "A cross-platform curses-based monitoring tool")
|
|
||||||
(description "A cross-platform curses-based monitoring tool")
|
|
||||||
(license #f))
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
;;; glicid.scm ends here
|
;;; glicid.scm ends here
|
||||||
|
|
|
@ -26,5 +26,25 @@
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
(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)))
|
||||||
|
)
|
||||||
|
|
||||||
|
(inputs `(("ceph:lib", ceph "lib" ) ;; will take the more up to date ceph
|
||||||
|
,@(package-inputs qemu-minimal)))
|
||||||
|
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
;;; glicid/virtualizationvirtualization.scm ends here
|
;;; glicid/virtualizationvirtualization.scm ends here
|
||||||
|
|
Loading…
Add table
Reference in a new issue