Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ac19d5e34f38
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3be43b748386
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Dec 11, 2018

  1. vboxExtpack: Fix the sha256 to be hex.

    It does not work if the sha256 is not hex, it fails because VBoxExtPackHelperApp requires to be given a hex hash.
    See #34846 where the same problem was fixed some time ago.
    ambrop72 committed Dec 11, 2018
    Copy the full SHA
    22acb2e View commit details
  2. Merge pull request #51878 from ambrop72/vbox-extpack-hash-fix

    vboxExtpack: Fix the sha256 to be hex.
    markuskowa authored Dec 11, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3be43b7 View commit details
Showing with 5 additions and 1 deletion.
  1. +5 −1 pkgs/applications/virtualization/virtualbox/extpack.nix
6 changes: 5 additions & 1 deletion pkgs/applications/virtualization/virtualbox/extpack.nix
Original file line number Diff line number Diff line change
@@ -7,7 +7,11 @@ in
fetchurl rec {
name = "Oracle_VM_VirtualBox_Extension_Pack-${version}.vbox-extpack";
url = "https://download.virtualbox.org/virtualbox/${version}/${name}";
sha256 = "1vria59m7xr521hp2sakfihv8282xcfd5hl6dr1gbcjicmk514kp";
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";