2018-08-08 16:22:02 +02:00
|
|
|
{stdenv, fetchurl, lib}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2018-12-07 17:05:55 +01:00
|
|
|
let version = "5.2.22";
|
2018-08-08 16:22:02 +02:00
|
|
|
in
|
2018-08-10 07:28:57 +02:00
|
|
|
fetchurl rec {
|
2018-12-07 17:05:55 +01:00
|
|
|
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
|
|
|
|
url = "https://download.virtualbox.org/virtualbox/${version}/${name}";
|
2018-12-11 20:45:18 +01:00
|
|
|
sha256 =
|
|
|
|
# Manually sha256sum the extensionPack file, must be hex!
|
|
|
|
# Thus do not use `nix-prefetch-url` but instead plain old `sha256sum`.
|
|
|
|
let value = "779250666551b2f5426e86c2d21ceb0209b46174536971611025f753535131ef";
|
|
|
|
in assert (builtins.stringLength value) == 64; value;
|
2018-08-08 16:22:02 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Oracle Extension pack for VirtualBox";
|
|
|
|
license = licenses.virtualbox-puel;
|
|
|
|
homepage = https://www.virtualbox.org/;
|
|
|
|
maintainers = with maintainers; [ flokli sander cdepillabout ];
|
|
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
|
|
};
|
|
|
|
}
|