mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
22acb2e3c3
It does not work if the sha256 is not hex, it fails because VBoxExtPackHelperApp requires to be given a hex hash. See https://github.com/NixOS/nixpkgs/issues/34846 where the same problem was fixed some time ago.
24 lines
793 B
Nix
24 lines
793 B
Nix
{stdenv, fetchurl, lib}:
|
|
|
|
with lib;
|
|
|
|
let version = "5.2.22";
|
|
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 = "779250666551b2f5426e86c2d21ceb0209b46174536971611025f753535131ef";
|
|
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" "i686-linux" ];
|
|
};
|
|
}
|