1 { fetchurl, lib, virtualbox }:
3 inherit (virtualbox) version;
6 name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
7 url = "https://download.virtualbox.org/virtualbox/${version}/${name}";
9 # Manually sha256sum the extensionPack file, must be hex!
10 # Thus do not use `nix-prefetch-url` but instead plain old `sha256sum`.
11 # Checksums can also be found at https://www.virtualbox.org/download/hashes/${version}/SHA256SUMS
12 let value = "d750fb17688d70e0cb2d7b06f1ad3a661303793f4d1ac39cfa9a54806b89da25";
13 in assert (builtins.stringLength value) == 64; value;
16 description = "Oracle Extension pack for VirtualBox";
17 license = licenses.virtualbox-puel;
18 homepage = "https://www.virtualbox.org/";
19 maintainers = with maintainers; [ sander friedrichaltheide ];
20 platforms = [ "x86_64-linux" ];