chromium/updater: Fix eval error on stdenv.is32bit

There is no stdenv.is32bit, so let's just use !stdenv.is64bit.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2016-03-05 03:10:53 +01:00
parent 8d5accb691
commit c3d82f0fbf
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -46,7 +46,7 @@ in rec {
in if stdenv.is64bit && chanAttrs ? sha256bin64 then {
urls = mkUrls "amd64";
sha256 = chanAttrs.sha256bin64;
} else if stdenv.is32bit && chanAttrs ? sha256bin32 then {
} else if !stdenv.is64bit && chanAttrs ? sha256bin32 then {
urls = mkUrls "i386";
sha256 = chanAttrs.sha256bin32;
} else throw "No Chrome plugins are available for your architecture.";