biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / virtualization / virtualbox / extpack.nix
blob365c635a17aef12f3034e344a0c42a91ee6a5ab7
1 { fetchurl, lib, virtualbox }:
2 let
3   inherit (virtualbox) version;
4 in
5 fetchurl rec {
6   name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
7   url = "https://download.virtualbox.org/virtualbox/${version}/${name}";
8   sha256 =
9     # Manually sha256sum the extensionPack file, must be hex!
10     # Thus do not use `nix-prefetch-url` but instead plain old `sha256sum`.
11     # Checksums can also be found at https://www.virtualbox.org/download/hashes/${version}/SHA256SUMS
12     let value = "d750fb17688d70e0cb2d7b06f1ad3a661303793f4d1ac39cfa9a54806b89da25";
13     in assert (builtins.stringLength value) == 64; value;
15   meta = with lib; {
16     description = "Oracle Extension pack for VirtualBox";
17     license = licenses.virtualbox-puel;
18     homepage = "https://www.virtualbox.org/";
19     maintainers = with maintainers; [ sander friedrichaltheide ];
20     platforms = [ "x86_64-linux" ];
21   };