chromium: Mark beta and dev versions lowPrio.

I'm still wondering why noone has reported this, but I found out about this
while trying to introduce someone to NixOS, eventually wondering why it is going
to install version 29 when using "nix-env -i chromium".

So, in hope that everyone out there using the package is using the attribute,
let's make _stable_ the default here.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-06-21 09:16:26 +02:00
parent e0ea957d64
commit 8b425e2ae3
No known key found for this signature in database
GPG Key ID: D0EBD0EC8C2DC961

View File

@ -6992,11 +6992,11 @@ let
pulseSupport = config.pulseaudio or false;
});
chromiumBeta = chromium.override { channel = "beta"; };
chromiumBetaWrapper = wrapChromium chromiumBeta;
chromiumBeta = lowPrio (chromium.override { channel = "beta"; });
chromiumBetaWrapper = lowPrio (wrapChromium chromiumBeta);
chromiumDev = chromium.override { channel = "dev"; };
chromiumDevWrapper = wrapChromium chromiumDev;
chromiumDev = lowPrio (chromium.override { channel = "dev"; });
chromiumDevWrapper = lowPrio (wrapChromium chromiumDev);
chromiumWrapper = wrapChromium chromium;