* KVM 57. (Newer versions don't compile against the current kernel headers.)
svn path=/nixpkgs/branches/stdenv-updates/; revision=10598
This commit is contained in:
parent
f99bae4c0e
commit
82297a0c83
24
pkgs/os-specific/linux/kvm/57.nix
Normal file
24
pkgs/os-specific/linux/kvm/57.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{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";
|
||||
};
|
||||
|
||||
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";
|
||||
|
||||
meta = {
|
||||
homepage = http://kvm.qumranet.com/;
|
||||
description = "A full virtualization solution for Linux on x86 hardware containing virtualization extensions";
|
||||
};
|
||||
}
|
@ -3522,7 +3522,7 @@ rec {
|
||||
inherit fetchurl stdenv perl bison mktemp kernel;
|
||||
};
|
||||
|
||||
kvm = kvm49;
|
||||
kvm = kvm57;
|
||||
|
||||
kvm12 = import ../os-specific/linux/kvm/12.nix {
|
||||
inherit fetchurl zlib e2fsprogs SDL alsaLib;
|
||||
@ -3542,6 +3542,12 @@ rec {
|
||||
kernelHeaders = kernelHeaders_2_6_23;
|
||||
};
|
||||
|
||||
kvm57 = import ../os-specific/linux/kvm/57.nix {
|
||||
inherit fetchurl zlib e2fsprogs SDL alsaLib;
|
||||
stdenv = overrideGCC stdenv gcc34;
|
||||
kernelHeaders = kernelHeaders_2_6_23;
|
||||
};
|
||||
|
||||
libcap = import ../os-specific/linux/libcap {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user