2013-02-09 19:09:35 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages qemu)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix packages)
|
2013-02-10 18:28:00 +01:00
|
|
|
#:use-module (guix utils)
|
2013-02-10 17:01:47 +01:00
|
|
|
#:use-module ((guix licenses) #:select (gpl2))
|
2013-02-09 19:09:35 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
2013-02-16 02:09:10 +01:00
|
|
|
#:use-module (gnu packages)
|
2013-02-10 18:28:00 +01:00
|
|
|
#:use-module (gnu packages autotools)
|
2013-02-09 19:09:35 +01:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
#:use-module (gnu packages python)
|
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages libpng)
|
|
|
|
#:use-module (gnu packages libjpeg)
|
|
|
|
#:use-module (gnu packages attr)
|
2013-02-10 18:28:00 +01:00
|
|
|
#:use-module (gnu packages linux)
|
2013-02-15 22:36:05 +01:00
|
|
|
#:use-module (gnu packages samba)
|
2013-07-03 01:04:57 +02:00
|
|
|
#:use-module (gnu packages xorg)
|
2013-02-10 18:28:00 +01:00
|
|
|
#:use-module (gnu packages perl))
|
2013-02-09 19:09:35 +01:00
|
|
|
|
|
|
|
(define-public qemu-kvm
|
|
|
|
(package
|
|
|
|
(name "qemu-kvm")
|
|
|
|
(version "1.2.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "mirror://sourceforge/kvm/qemu-kvm/"
|
|
|
|
version "/qemu-kvm-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"018vb5nmk2fsm143bs2bl2wirhasd4b10d7jchl32zik4inbk2p9"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(#:phases (alist-replace
|
|
|
|
'configure
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
;; The `configure' script doesn't understand some of the
|
|
|
|
;; GNU options. Thus, add a new phase that's compatible.
|
2013-02-15 22:36:05 +01:00
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(samba (assoc-ref inputs "samba")))
|
2013-02-09 19:09:35 +01:00
|
|
|
(setenv "SHELL" (which "bash"))
|
|
|
|
|
|
|
|
;; The binaries need to be linked against -lrt.
|
|
|
|
(setenv "LDFLAGS" "-lrt")
|
|
|
|
(zero?
|
|
|
|
(system* "./configure"
|
2013-07-03 01:04:57 +02:00
|
|
|
(string-append "--cc=" (which "gcc"))
|
2013-02-15 22:36:05 +01:00
|
|
|
(string-append "--prefix=" out)
|
|
|
|
(string-append "--smbd=" samba
|
|
|
|
"/sbin/smbd")))))
|
2013-02-09 19:09:35 +01:00
|
|
|
%standard-phases)))
|
|
|
|
(inputs ; TODO: Add optional inputs.
|
|
|
|
`(;; ("mesa" ,mesa)
|
|
|
|
;; ("libaio" ,libaio)
|
|
|
|
("glib" ,glib)
|
|
|
|
("python" ,python)
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
("libpng" ,libpng)
|
|
|
|
("libjpeg" ,libjpeg-8)
|
2013-07-03 01:04:57 +02:00
|
|
|
("pixman" ,pixman)
|
2013-02-09 19:09:35 +01:00
|
|
|
;; ("vde2" ,vde2)
|
|
|
|
("util-linux" ,util-linux)
|
|
|
|
;; ("pciutils" ,pciutils)
|
|
|
|
("pkg-config" ,pkg-config)
|
2013-07-03 01:04:57 +02:00
|
|
|
("alsa-lib" ,alsa-lib)
|
2013-02-09 19:09:35 +01:00
|
|
|
;; ("SDL" ,SDL)
|
|
|
|
("zlib" ,zlib)
|
2013-02-15 22:36:05 +01:00
|
|
|
("attr" ,attr)
|
|
|
|
("samba" ,samba))) ; an optional dependency
|
2013-02-09 19:09:35 +01:00
|
|
|
(home-page "http://www.linux-kvm.org/")
|
|
|
|
(synopsis
|
2013-02-10 17:01:47 +01:00
|
|
|
"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)))
|
2013-02-10 18:28:00 +01:00
|
|
|
|
2013-02-16 02:09:10 +01:00
|
|
|
(define-public qemu-kvm/smb-shares
|
|
|
|
;; A patched QEMU-KVM where `-net smb' yields two shares instead of one: one
|
|
|
|
;; for the store, and another one for exchanges with the host.
|
|
|
|
(package (inherit qemu-kvm)
|
|
|
|
(name "qemu-kvm-with-multiple-smb-shares")
|
|
|
|
(inputs `(,@(package-inputs qemu-kvm)
|
|
|
|
("patch/smb-shares"
|
|
|
|
,(search-patch "qemu-multiple-smb-shares.patch"))))
|
|
|
|
(arguments
|
|
|
|
`(#:patches (list (assoc-ref %build-inputs "patch/smb-shares"))
|
|
|
|
,@(package-arguments qemu-kvm)))))
|
|
|
|
|
2013-02-10 18:28:00 +01:00
|
|
|
(define-public qemu
|
|
|
|
;; The real one, with a complete target list.
|
|
|
|
(package (inherit qemu-kvm)
|
|
|
|
(name "qemu")
|
2013-07-03 01:04:57 +02:00
|
|
|
(version "1.5.1")
|
2013-02-10 18:28:00 +01:00
|
|
|
(location (source-properties->location (current-source-location)))
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://wiki.qemu-project.org/download/qemu-"
|
|
|
|
version ".tar.bz2"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2013-07-03 01:04:57 +02:00
|
|
|
"1s7316pgizpayr472la8p8a4vhv7ymmzd5qlbkmq6y9q5zpa25ac"))))
|
2013-02-10 18:28:00 +01:00
|
|
|
(arguments
|
|
|
|
(substitute-keyword-arguments (package-arguments qemu-kvm)
|
|
|
|
((#:phases phases)
|
|
|
|
`(alist-cons-before
|
|
|
|
'build 'pre-build
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2013-07-03 01:04:57 +02:00
|
|
|
(substitute* "tests/libqtest.c"
|
|
|
|
(("/bin/sh") (which "sh"))))
|
2013-02-10 18:28:00 +01:00
|
|
|
,phases))))
|
2013-07-03 01:04:57 +02:00
|
|
|
(native-inputs `(("perl" ,perl)))
|
|
|
|
(home-page "http://www.qemu-project.org")
|
2013-02-10 18:28:00 +01:00
|
|
|
(description
|
|
|
|
"QEMU is a generic and open source machine emulator and virtualizer.
|
|
|
|
|
|
|
|
When used as a machine emulator, QEMU can run OSes and programs made for one
|
|
|
|
machine (e.g. an ARM board) on a different machine
|
|
|
|
(e.g. your own PC). By using dynamic translation, it achieves very good
|
|
|
|
performance.
|
|
|
|
|
|
|
|
When used as a virtualizer, QEMU achieves near native performances by
|
|
|
|
executing the guest code directly on the host CPU. QEMU supports
|
|
|
|
virtualization when executing under the Xen hypervisor or using
|
|
|
|
the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86,
|
|
|
|
server and embedded PowerPC, and S390 guests.")))
|