23 lines
779 B
Nix
23 lines
779 B
Nix
{stdenv, fetchurl, lib}:
|
|
|
|
with lib;
|
|
|
|
let version = "6.0.8";
|
|
in
|
|
fetchurl rec {
|
|
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
|
|
url = "https://download.virtualbox.org/virtualbox/${version}/${name}";
|
|
sha256 =
|
|
# Manually sha256sum the extensionPack file, must be hex!
|
|
# Thus do not use `nix-prefetch-url` but instead plain old `sha256sum`.
|
|
let value = "6d89127c7f043fa96592da96ca87ac5ee9a7afd347d788380f91b695b67d7954";
|
|
in assert (builtins.stringLength value) == 64; value;
|
|
|
|
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" ];
|
|
};
|
|
}
|