mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
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:
parent
d072234282
commit
3378679ff9
|
@ -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
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue