mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
135ebdb7b8
virtualbox: 6.0.12 -> 6.0.14
25 lines
867 B
Nix
25 lines
867 B
Nix
{fetchurl, lib}:
|
|
|
|
with lib;
|
|
|
|
let version = "6.0.14";
|
|
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 = "c8a5cc980c9c94cdac3d94e23cf159c2433aae76b416dbfb5b1a918758f21e63";
|
|
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" ];
|
|
};
|
|
}
|