1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

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
This commit is contained in:
aszlig 2016-03-21 16:11:23 +01:00
parent 4295ad5ee8
commit 4d305102e0
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

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