forked from mirrors/nixpkgs
QEMU-KVM 1.0 (tentative).
svn path=/nixpkgs/trunk/; revision=32637
This commit is contained in:
parent
11aceede25
commit
c67edd454c
51
pkgs/os-specific/linux/qemu-kvm/1.0.nix
Normal file
51
pkgs/os-specific/linux/qemu-kvm/1.0.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{ stdenv, fetchurl, attr, zlib, SDL, alsaLib, pkgconfig, pciutils, libuuid, vde2
|
||||||
|
, libjpeg, libpng, ncurses, python, glib }:
|
||||||
|
|
||||||
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
|
let version = "1.0"; in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "qemu-kvm-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/kvm/qemu-kvm/${version}/${name}.tar.gz";
|
||||||
|
sha256 = "0vhigv9r9yrhph4wc4mhg99a683iwf121kjigqzg92x2l3ayl4dp";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [ ./smb-tmpdir.patch ./qemu-img-fix-corrupt-vdi.patch ];
|
||||||
|
postPatch =
|
||||||
|
'' for i in $(find kvm -type f)
|
||||||
|
do
|
||||||
|
sed -i "$i" \
|
||||||
|
-e 's|/bin/bash|/bin/sh|g ;
|
||||||
|
s|/usr/bin/python|${python}/bin/python|g ;
|
||||||
|
s|/bin/rm|rm|g'
|
||||||
|
done
|
||||||
|
'';
|
||||||
|
|
||||||
|
configureFlags =
|
||||||
|
[ "--audio-drv-list=alsa"
|
||||||
|
"--smbd=smbd" # use `smbd' from $PATH
|
||||||
|
];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ attr zlib SDL alsaLib pkgconfig pciutils libuuid vde2 libjpeg libpng
|
||||||
|
ncurses python glib
|
||||||
|
];
|
||||||
|
|
||||||
|
postInstall =
|
||||||
|
''
|
||||||
|
# Libvirt expects us to be called `qemu-kvm'. Otherwise it will
|
||||||
|
# set the domain type to "qemu" rather than "kvm", which can
|
||||||
|
# cause architecture selection to misbehave.
|
||||||
|
ln -sv $(cd $out/bin && echo qemu-system-*) $out/bin/qemu-kvm
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://www.linux-kvm.org/;
|
||||||
|
description = "A full virtualization solution for Linux on x86 hardware containing virtualization extensions";
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -6043,6 +6043,7 @@ let
|
||||||
pwdutils = callPackage ../os-specific/linux/pwdutils { };
|
pwdutils = callPackage ../os-specific/linux/pwdutils { };
|
||||||
|
|
||||||
qemu_kvm = callPackage ../os-specific/linux/qemu-kvm { };
|
qemu_kvm = callPackage ../os-specific/linux/qemu-kvm { };
|
||||||
|
qemu_kvm_1_0 = callPackage ../os-specific/linux/qemu-kvm/1.0.nix { };
|
||||||
|
|
||||||
firmwareLinuxNonfree = callPackage ../os-specific/linux/firmware/firmware-linux-nonfree { };
|
firmwareLinuxNonfree = callPackage ../os-specific/linux/firmware/firmware-linux-nonfree { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue