virtualbox: 7.0.10 -> 7.0.12

+4 -4
+2 -2
pkgs/applications/virtualization/virtualbox/default.nix
··· 25 25 buildType = "release"; 26 26 # Use maintainers/scripts/update.nix to update the version and all related hashes or 27 27 # change the hashes in extpack.nix and guest-additions/default.nix as well manually. 28 - version = "7.0.10"; 28 + version = "7.0.12"; 29 29 in stdenv.mkDerivation { 30 30 pname = "virtualbox"; 31 31 inherit version; 32 32 33 33 src = fetchurl { 34 34 url = "https://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2"; 35 - sha256 = "0b1e6d8b7f87d017c7fae37f80586acff04f799ffc1d51e995954d6415dee371"; 35 + sha256 = "d76634c6ccf62503726a5aeae6c78a3462474c51a0ebe4942591ccc2d939890a"; 36 36 }; 37 37 38 38 outputs = [ "out" "modsrc" ];
+1 -1
pkgs/applications/virtualization/virtualbox/extpack.nix
··· 12 12 # Manually sha256sum the extensionPack file, must be hex! 13 13 # Thus do not use `nix-prefetch-url` but instead plain old `sha256sum`. 14 14 # Checksums can also be found at https://www.virtualbox.org/download/hashes/${version}/SHA256SUMS 15 - let value = "af84dccac488df72bfaeb1eb8c922ba466668561a6ac05c64a7f8b6ebdddbaeb"; 15 + let value = "dbf7ce39e5c021d420fc6b2045b084a68fc5172937192bd70c3207efa786278d"; 16 16 in assert (builtins.stringLength value) == 64; value; 17 17 18 18 meta = {
+1 -1
pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
··· 23 23 24 24 src = fetchurl { 25 25 url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso"; 26 - sha256 = "bbabd89b8fff38a257bab039a278f0c4dc4426eff6e4238c1db01edb7284186a"; 26 + sha256 = "b37f6aabe5a32e8b96ccca01f37fb49f4fd06674f1b29bc8fe0f423ead37b917"; 27 27 }; 28 28 29 29 KERN_DIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";