2018-08-08 14:22:02 +00:00
|
|
|
{stdenv, fetchurl, lib}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
2018-12-07 16:05:55 +00:00
|
|
|
let version = "5.2.22";
|
2018-08-08 14:22:02 +00:00
|
|
|
in
|
2018-08-10 05:28:57 +00:00
|
|
|
fetchurl rec {
|
2018-12-07 16:05:55 +00:00
|
|
|
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
|
|
|
|
url = "https://download.virtualbox.org/virtualbox/${version}/${name}";
|
|
|
|
sha256 = "1vria59m7xr521hp2sakfihv8282xcfd5hl6dr1gbcjicmk514kp";
|
2018-08-08 14:22:02 +00: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" ];
|
|
|
|
};
|
|
|
|
}
|