google-chrome: Fix fetching upstream binary

Commit aa097946d2 only fixed evaluation.

Ssince 37dbd62 however, the fetchurl call is already implied so just
changing the path will still result in fetchurl (fetchurl ...), so let's
drop the outer fetchurl.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Cc: @msteen, @benley
(cherry picked from commit 4d305102e0)
This commit is contained in:
aszlig
2016-03-21 16:11:23 +01:00
parent dc3073b52f
commit 8c2fa806b8

View File

@@ -59,7 +59,7 @@ in stdenv.mkDerivation rec {
name = "google-chrome-${version}";
src = fetchurl binary;
src = binary;
buildInputs = [ env patchelf ];