mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
virtualbox: Add an alias for the hardened version.
This is to ensure that Hydra will build the hardened version of VirtualBox and it's also lowPrio to avoid being accidentally installed into a user's environment. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
127c928c23
commit
142b12c864
@ -8587,7 +8587,7 @@ let
|
||||
for a specific kernel. This function can then be called for
|
||||
whatever kernel you're using. */
|
||||
|
||||
linuxPackagesFor = kernel: self: let callPackage = newScope self; in {
|
||||
linuxPackagesFor = kernel: self: let callPackage = newScope self; in rec {
|
||||
inherit kernel;
|
||||
|
||||
acpi_call = callPackage ../os-specific/linux/acpi-call {};
|
||||
@ -8667,6 +8667,10 @@ let
|
||||
pulseSupport = config.pulseaudio or false;
|
||||
};
|
||||
|
||||
virtualboxHardened = lowPrio (virtualbox.override {
|
||||
enableHardening = true;
|
||||
});
|
||||
|
||||
virtualboxGuestAdditions = callPackage ../applications/virtualization/virtualbox/guest-additions { };
|
||||
|
||||
zfs = callPackage ../os-specific/linux/zfs { };
|
||||
|
Loading…
Reference in New Issue
Block a user