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