3
0
Fork 0
forked from mirrors/nixpkgs

chromium: Don't use v8 from <nixpkgs> anymore.

The version of v8 to use for Chromium is heavily tied to the specific
version of Chromium and thus it doesn't really make sense to use v8 from
<nixpkgs>, as we would need to have 3 different versions of v8, one for
each Chromium channel.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2014-04-19 09:56:48 +02:00
parent d072234282
commit 3378679ff9
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -3,7 +3,7 @@
# default dependencies
, bzip2, flac, speex, icu, libopus
, libevent, expat, libjpeg, snappy
, libpng, libxml2, libxslt, v8
, libpng, libxml2, libxslt
, xdg_utils, yasm, minizip, libwebp
, libusb1, libexif, pciutils
@ -75,7 +75,7 @@ let
use_system_libusb = false; # http://crbug.com/266149
use_system_skia = false;
use_system_sqlite = false; # http://crbug.com/22208
use_system_v8 = !versionOlder source.version "34.0.0.0";
use_system_v8 = false;
};
opusWithCustomModes = libopus.override {
@ -85,7 +85,7 @@ let
defaultDependencies = [
bzip2 flac speex icu opusWithCustomModes
libevent expat libjpeg snappy
libpng libxml2 libxslt v8
libpng libxml2 libxslt
xdg_utils yasm minizip libwebp
libusb1 libexif
];