diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-10 17:01:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-10 17:01:47 +0100 |
commit | 2aee33cfc1bc567ba1ef3eada473c49aa0a46e0d (patch) | |
tree | 159b1033570c9802307b8c4b4bb12bce7251693c /gnu/packages/qemu.scm | |
parent | 6064c4cdf09903739d35b95576f17abfbe916ff6 (diff) | |
download | guix-2aee33cfc1bc567ba1ef3eada473c49aa0a46e0d.tar guix-2aee33cfc1bc567ba1ef3eada473c49aa0a46e0d.tar.gz |
gnu: Add description and license for QEMU-KVM.
* gnu/packages/qemu.scm (qemu-kvm): Add description and license.
Diffstat (limited to 'gnu/packages/qemu.scm')
-rw-r--r-- | gnu/packages/qemu.scm | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/gnu/packages/qemu.scm b/gnu/packages/qemu.scm index e22ffd2fb6..b79da989a6 100644 --- a/gnu/packages/qemu.scm +++ b/gnu/packages/qemu.scm @@ -19,7 +19,7 @@ (define-module (gnu packages qemu) #:use-module (guix download) #:use-module (guix packages) - #:use-module ((guix licenses) #:renamer (symbol-prefix-proc 'license:)) + #:use-module ((guix licenses) #:select (gpl2)) #:use-module (guix build-system gnu) #:use-module (gnu packages pkg-config) #:use-module (gnu packages glib) @@ -76,6 +76,14 @@ ("attr" ,attr))) (home-page "http://www.linux-kvm.org/") (synopsis - "A full virtualization solution for Linux on x86 hardware containing virtualization extensions") - (description #f) - (license #f))) + "Virtualization for Linux on x86 hardware containing virtualization extensions") + (description + "KVM (for Kernel-based Virtual Machine) is a full virtualization solution +for Linux on x86 hardware containing virtualization extensions (Intel VT or +AMD-V). It consists of a loadable kernel module, kvm.ko, that provides the +core virtualization infrastructure and a processor specific module, +kvm-intel.ko or kvm-amd.ko. KVM also requires a modified QEMU although work is +underway to get the required changes upstream.") + + ;; Many files are GPLv2+, but some are GPLv2-only---e.g., `memory.c'. + (license gpl2))) |