summary refs log tree commit diff
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-09-10 20:34:10 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-09-10 21:37:36 +0200
commitd891fc6f3bf5dd08f249cdf8a452b6d97b43903e (patch)
tree93cfbb83b2dea8b84010761876cd8247b1deb3ee
parent61e7956b3e7e53e00aa68a82ca58a7ff73df741a (diff)
downloadnixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.tar
nixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.tar.gz
nixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.tar.bz2
nixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.tar.lz
nixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.tar.xz
nixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.tar.zst
nixlib-d891fc6f3bf5dd08f249cdf8a452b6d97b43903e.zip
virtualbox: Update to version 4.1.22.
Upstream changes are:

 * VMM: fixed a potential host crash triggered by shutting down a VM when
        another VM was running (only affected 32-bit hosts and 64-bit OS X
        hosts, 4.1 regression)
 * VMM: fixed a potential host crash under a high guest memory pressure (seen
        with Windows 8 guests)
 * VMM: respect RAM preallocation while restoring saved state.
 * VMM: fixed handling of task gates if VT-x/AMD-V is disabled
 * Storage: fixed audio CD passthrough for certain media players
 * USB: don't crash if a USB device is plugged or unplugged when saving or
        loading the VM state (SMP guests only)
 * RTC: fixed a potential corruption of CMOS bank 1
 * Mac OS X hosts: installer fixes for Leopard (4.1.20 regression)
 * Windows Additions: fixed memory leak in VBoxTray

Full changelogs with bug ids and links to it can be found at:

https://www.virtualbox.org/wiki/Changelog

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
-rw-r--r--pkgs/applications/virtualization/virtualbox/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix
index 1067300a2ef6..56387f9e5c40 100644
--- a/pkgs/applications/virtualization/virtualbox/default.nix
+++ b/pkgs/applications/virtualization/virtualbox/default.nix
@@ -10,7 +10,7 @@ with stdenv.lib;
 
 let
 
-  version = "4.1.20";
+  version = "4.1.22";
 
   forEachModule = action: ''
     for mod in \
@@ -34,7 +34,7 @@ in stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2";
-    sha256 = "b132dbc5c6e9ed77aba737ec35b488ac152aa362c3ad49d466897bc410324aeb";
+    sha256 = "7abb506203dd0d69b4b408fd999b5b9a479a9adce5f80e9b5569641c053dd153";
   };
 
   buildInputs =