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:
parent
8d5accb691
commit
c3d82f0fbf
@ -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.";
|
||||
|
Loading…
Reference in New Issue
Block a user