Merge pull request #287878 from blitz/vbox-7.0.14

virtualbox: 7.0.12 -> 7.0.14

authored by Jacek Galowicz and committed by GitHub d7c8d1d8 50ca10e7

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