mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
dcabc91904
The guest additions currently don't build, either before or after this change, but upgrading is still good because it gets us Linux 5.16 compatibility for the kernel module.
26 lines
893 B
Nix
26 lines
893 B
Nix
{fetchurl, lib, virtualbox}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
inherit (virtualbox) version;
|
|
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`.
|
|
# Checksums can also be found at https://www.virtualbox.org/download/hashes/${version}/SHA256SUMS
|
|
let value = "a5ee3e693a0470a77735556a77a09aa83bfc48181998b9b21b1af82ef1d11c2a";
|
|
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; [ sander cdepillabout ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|