92b3d6365d
GitOrigin-RevId: 412b9917cea092f3d39f9cd5dead4effd5bc4053
25 lines
895 B
Nix
25 lines
895 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 = "29cf8410e2514ea4393f63f5e955b8311787873679fc23ae9a897fb70ef3f84a";
|
|
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" ];
|
|
};
|
|
}
|