virtualbox: 6.0.8 -> 6.0.10

This commit is contained in:
Tim Steinbach
2019-09-04 11:12:07 -04:00
parent 55256d644b
commit 4e99ef6a18
3 changed files with 6 additions and 5 deletions
@@ -2,7 +2,7 @@
with lib;
let version = "6.0.8";
let version = "6.0.10";
in
fetchurl rec {
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
@@ -10,7 +10,8 @@ fetchurl rec {
sha256 =
# Manually sha256sum the extensionPack file, must be hex!
# Thus do not use `nix-prefetch-url` but instead plain old `sha256sum`.
let value = "6d89127c7f043fa96592da96ca87ac5ee9a7afd347d788380f91b695b67d7954";
# Checksums can also be found at https://www.virtualbox.org/download/hashes/${version}/SHA256SUMS
let value = "e5a9eb240379a57c9bf03954a594a03431698e67aef551e27f62170bed9b16ea";
in assert (builtins.stringLength value) == 64; value;
meta = {