Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
972 B
Nix
33 lines
972 B
Nix
{
|
|
fetchurl,
|
|
lib,
|
|
virtualbox,
|
|
}:
|
|
let
|
|
virtualboxExtPackVersion = "7.2.0";
|
|
in
|
|
fetchurl rec {
|
|
name = "Oracle_VirtualBox_Extension_Pack-${virtualboxExtPackVersion}.vbox-extpack";
|
|
url = "https://download.virtualbox.org/virtualbox/${virtualboxExtPackVersion}/${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 = "8a44f3eeaf9bb71fab297bf4b3d38bd1bc55243f3c1a12bfb0e8d78170f949a0";
|
|
in
|
|
assert (builtins.stringLength value) == 64;
|
|
value;
|
|
|
|
meta = with lib; {
|
|
description = "Oracle Extension pack for VirtualBox";
|
|
license = licenses.virtualbox-puel;
|
|
homepage = "https://www.virtualbox.org/";
|
|
maintainers = with maintainers; [
|
|
sander
|
|
friedrichaltheide
|
|
];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|