mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
8c092a1940
on NixOS). svn path=/nixpkgs/trunk/; revision=11061
35 lines
940 B
Nix
35 lines
940 B
Nix
{stdenv, fetchurl, kernelHeaders, zlib, e2fsprogs, SDL, alsaLib}:
|
|
|
|
assert stdenv.isLinux;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kvm-57";
|
|
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/kvm/kvm-57.tar.gz;
|
|
sha256 = "016h5pf59fyz7skzsaprii2mdpxpb8hfnnr1w475qcfyy6ccr9r0";
|
|
};
|
|
|
|
patches = [
|
|
# Allow setting the path to Samba through $QEMU_SMBD_COMMAND.
|
|
./smbd-path.patch
|
|
];
|
|
|
|
configureFlags = "--with-patched-kernel --kerneldir=${kernelHeaders}";
|
|
|
|
# e2fsprogs is needed for libuuid.
|
|
buildInputs = [zlib e2fsprogs SDL alsaLib];
|
|
|
|
preConfigure = ''
|
|
for i in configure user/configure; do
|
|
substituteInPlace $i --replace /bin/bash $shell
|
|
done
|
|
substituteInPlace libkvm/Makefile --replace kvm_para.h kvm.h # !!! quick hack
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://kvm.qumranet.com/;
|
|
description = "A full virtualization solution for Linux on x86 hardware containing virtualization extensions";
|
|
};
|
|
}
|