virtualbox: 5.0.20 -> 5.0.26

authored by

David Guibert and committed by
Gabriel Ebner
21f2f307 f0da094b

+6 -13
+5 -12
pkgs/applications/virtualization/virtualbox/default.nix
··· 18 18 # revision/hash as well. See 19 19 # http://download.virtualbox.org/virtualbox/${version}/SHA256SUMS 20 20 # for hashes. 21 - version = "5.0.20"; 21 + version = "5.0.26"; 22 22 23 23 forEachModule = action: '' 24 24 for mod in \ ··· 39 39 ''; 40 40 41 41 # See https://github.com/NixOS/nixpkgs/issues/672 for details 42 - extpackRevision = "106931"; 42 + extpackRevision = "108824"; 43 43 extensionPack = requireFile rec { 44 44 name = "Oracle_VM_VirtualBox_Extension_Pack-${version}-${extpackRevision}.vbox-extpack"; 45 45 # IMPORTANT: Hash must be base16 encoded because it's used as an input to 46 46 # VBoxExtPackHelperApp! 47 - sha256 = "11f40842a56ebb17da1bbc82a21543e66108a5330ebd54ded68038a990aa071b"; 47 + sha256 = "2f2302c7ba3d00a1258fe8e7767a6eb08dccdc3c31f6e3eeb74063c2c268b104"; 48 48 message = '' 49 49 In order to use the extension pack, you need to comply with the VirtualBox Personal Use 50 50 and Evaluation License (PUEL) available at: ··· 63 63 64 64 src = fetchurl { 65 65 url = "http://download.virtualbox.org/virtualbox/${version}/VirtualBox-${version}.tar.bz2"; 66 - sha256 = "0asc5n9an2dzvrd4isjz3vac2h0sm6dbzvrc36hn8ag2ma3hg75g"; 66 + sha256 = "78dec1369d2c8feefea3c682d95e76c0e99414c56626388035cf4061d4dad62e"; 67 67 }; 68 68 69 69 buildInputs = ··· 97 97 set +x 98 98 ''; 99 99 100 - patches = optional enableHardening ./hardened.patch 101 - ++ [ 102 - (fetchurl rec { 103 - name = "fix-detect-gcc-5.4.patch"; 104 - url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=827193;filename=${name};msg=5"; 105 - sha256 = "0y6v5dc6fqj9iv27cl8q2g87v1kxg19129mpas4vjg7g0529v4g9"; 106 - }) 107 - ]; 100 + patches = optional enableHardening ./hardened.patch; 108 101 109 102 postPatch = '' 110 103 sed -i -e 's|/sbin/ifconfig|${nettools}/bin/ifconfig|' \
+1 -1
pkgs/applications/virtualization/virtualbox/guest-additions/default.nix
··· 12 12 13 13 src = fetchurl { 14 14 url = "http://download.virtualbox.org/virtualbox/${version}/VBoxGuestAdditions_${version}.iso"; 15 - sha256 = "1rh1dw0fqz1zhdbpnwxclh1bfj889xh27dm2m23v5wg54bymkfvg"; 15 + sha256 = "7458ee5a7121a7d243fd6a7528ba427945d9120c5efc7cd75b3951fb01f09c59"; 16 16 }; 17 17 18 18 KERN_DIR = "${kernel.dev}/lib/modules/*/build";