Skip to content
Snippets Groups Projects
Unverified Commit f46a3523 authored by Rutger Helling's avatar Rutger Helling Committed by Leo Famulari
Browse files

gnu: Add qmpbackup.


* gnu/packages/virtualization.scm (qmpbackup): New variable.

Signed-off-by: default avatarLeo Famulari <leo@famulari.name>
parent 0ea2364f
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ (define-module (gnu packages virtualization) ...@@ -62,7 +62,7 @@ (define-module (gnu packages virtualization)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system python) #:use-module (guix build-system python)
#:use-module (guix download) #:use-module (guix download)
#:use-module ((guix licenses) #:select (gpl2 gpl2+ lgpl2.1 lgpl2.1+)) #:use-module ((guix licenses) #:select (gpl2 gpl2+ gpl3+ lgpl2.1 lgpl2.1+))
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix utils) #:use-module (guix utils)
#:use-module (srfi srfi-1)) #:use-module (srfi srfi-1))
...@@ -687,3 +687,25 @@ (define-public criu ...@@ -687,3 +687,25 @@ (define-public criu
;; The project is licensed under GPLv2; files in the lib/ directory are ;; The project is licensed under GPLv2; files in the lib/ directory are
;; LGPLv2.1. ;; LGPLv2.1.
(license (list gpl2 lgpl2.1)))) (license (list gpl2 lgpl2.1))))
(define-public qmpbackup
(package
(name "qmpbackup")
(version "0.2")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/abbbi/qmpbackup/archive/"
version ".tar.gz"))
(sha256
(base32
"10k9mnb1yrg4gw1rvz4kw4dxc4aajl8gnjrpm3axqkg63qmxj3qn"))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system python-build-system)
(arguments
`(#:python ,python-2))
(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
Machine Protocol.")
(license gpl3+)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment