summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/chromium/browser.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2015-01-23 01:48:56 +0100
committeraszlig <aszlig@redmoonstudios.org>2015-01-26 09:31:03 +0100
commitced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd (patch)
tree9790e5f2d533c47d7d8359c0439b38f388078eac /pkgs/applications/networking/browsers/chromium/browser.nix
parentebc0ecd50a3cbf0f1b3b2e95033601fbc64a5bea (diff)
downloadnixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.tar
nixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.tar.gz
nixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.tar.bz2
nixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.tar.lz
nixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.tar.xz
nixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.tar.zst
nixpkgs-ced5afc38c2ea5122bbb9c7d0e455aaeaac8cabd.zip
chromium: Update all channels to latest versions.
This brings a new stable version 40.0.2214.91 along with a beta update
to version 41.0.2272.16, the dev channel is still stuck at version
41.0.2272.12 and within the next days will jump to version 42.

For this reason, I've done some cheating here and brought the beta
channel in par with the dev channel, because dev is older than beta on
OmahaProxy.

Here's an overview of the channel upgrades:

stable: 39.0.2171.65 -> 40.0.2214.91 [1]
beta:   40.0.2214.10 -> 41.0.2272.16 [1] [2] [3]
dev:    41.0.2224.3  -> 41.0.2272.16 [1] [2] [3]

[1]: We needed to patch in locations of lib{pci,udev}.so, because
     Chromium tries to load them at runtime. For version 41 startup will
     fail if it is unable to load libudev, but it also has the advantage
     that this fixes GPU detection using libpci in the stable version,
     which in turn could fix a few bugs on NixOS.

[2]: The upstream Debian package for the binary plugins now uses XZ
     compression for the enclosed data tarball.

[3]: Chromium 41 needs {shapshot,natives}_blob.bin in order to start up,
     so let's cp it among with the .pak files to avoid adding a
     conditional for version 40.

The release annoucement of the stable channel update can be found here:

http://googlechromereleases.blogspot.de/2015/01/stable-update.html

Note that this release contains 62 security fixes(!) and I'm hereby
apologizing for the delay of this update.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/applications/networking/browsers/chromium/browser.nix')
-rw-r--r--pkgs/applications/networking/browsers/chromium/browser.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/chromium/browser.nix b/pkgs/applications/networking/browsers/chromium/browser.nix
index f88d7df4030..6dcc1dbf860 100644
--- a/pkgs/applications/networking/browsers/chromium/browser.nix
+++ b/pkgs/applications/networking/browsers/chromium/browser.nix
@@ -9,7 +9,7 @@ mkChromiumDerivation (base: rec {
 
   installPhase = ''
     mkdir -p "$libExecPath"
-    cp -v "$buildPath/"*.pak "$libExecPath/"
+    cp -v "$buildPath/"*.pak "$buildPath/"*.bin "$libExecPath/"
     cp -v "$buildPath/icudtl.dat" "$libExecPath/"
     cp -vLR "$buildPath/locales" "$buildPath/resources" "$libExecPath/"
     cp -v "$buildPath/libpdf.so" "$buildPath/libffmpegsumo.so" "$libExecPath/"