Skip to content

Instantly share code, notes, and snippets.

@garbas
Last active August 29, 2015 14:03
Show Gist options
  • Save garbas/5af4636ee016672132b3 to your computer and use it in GitHub Desktop.
Save garbas/5af4636ee016672132b3 to your computer and use it in GitHub Desktop.
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
virtualboxGuestAdditions = stdenv.lib.overrideDerivation pkgs.virtualboxGuestAdditions (oldAttrs: {
version = "4.3.13-94438";
src = fetchurl {
url = https://www.virtualbox.org/download/testcase/VBoxGuestAdditions_4.3.13-94438.iso;
sha256 = "02i1405v4zdi293bipd3rjbp7a1z65yjgyfzn10iy0s84gfz8ij0";
};
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment