mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: qmpbackup: Update to 0.23.
* gnu/packages/virtualization.scm (qmpbackup): Update to 0.23. [inputs]: Add python-qemu-qmp. [python]: Delete argument. [tests?]: New argument.
This commit is contained in:
parent
5daac1a797
commit
8f49a084ba
1 changed files with 9 additions and 8 deletions
|
@ -1702,23 +1702,24 @@ (define-public python-qemu-qmp
|
|||
(define-public qmpbackup
|
||||
(package
|
||||
(name "qmpbackup")
|
||||
(version "0.2")
|
||||
(version "0.23")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/abbbi/qmpbackup")
|
||||
(commit version)))
|
||||
(url "https://github.com/abbbi/qmpbackup")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0swhp5byz44brhyis1a39p11fyn9q84xz5q6v2fah29r7d71kmmx"))))
|
||||
"0x9v81z0b2qr2y6m46rfnl4kl5jnixsdrl1c790iwl6pq9kzzvzg"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:python ,python-2))
|
||||
;; The test suite requires to download a 241 MiB QEMU image; skip it.
|
||||
(arguments (list #:tests? #f))
|
||||
(inputs (list python-qemu-qmp))
|
||||
(home-page "https://github.com/abbbi/qmpbackup")
|
||||
(synopsis "Backup and restore QEMU machines")
|
||||
(description "qmpbackup is designed to create and restore full and
|
||||
incremental backups of running QEMU virtual machines via QMP, the QEMU
|
||||
(description "@command{qmpbackup} is designed to create and restore full
|
||||
and incremental backups of running QEMU virtual machines via QMP, the QEMU
|
||||
Machine Protocol.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue