about summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2014-11-22 04:27:38 +0100
committeraszlig <aszlig@redmoonstudios.org>2014-11-22 04:34:16 +0100
commit392a4c0a269f725226aec812892acacbdfcaf0f8 (patch)
treec51eb66b2ae381dd1d1b378a636f7c728a384420 /pkgs/misc
parentc2740b5017dcf0f1a3be7975bdb035c77d3730bc (diff)
parent7eb4d3a3a9c65ec18eb1f5c8ad5872359ad51887 (diff)
downloadnixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.tar
nixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.tar.gz
nixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.tar.bz2
nixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.tar.lz
nixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.tar.xz
nixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.tar.zst
nixlib-392a4c0a269f725226aec812892acacbdfcaf0f8.zip
Merge branch 'chromium'.
This introduces Chromium 39 as the new stable version along with a bunch
of fixes.

Fixes #2799, particularily the PDF plugin, which now is open source and
thus no longer an issue.

Also fixes #3219 and merges #2906, so we no longer get a crash while
trying to bring up the print preview dialog.

Thanks to @edwtjo for the CUPS version bump.

 * chromium: Switch to use open-source PDF plugin.
 * cups: bump 1.5.4 -> 1.7.5
 * chromium: Allow env vars for passing plugin paths.
 * chromium: Update all channels to latest versions.
 * protobuf: Clean up and update to version 2.6.1.
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/cups/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/misc/cups/default.nix b/pkgs/misc/cups/default.nix
index c332dc021546..0f99902badb7 100644
--- a/pkgs/misc/cups/default.nix
+++ b/pkgs/misc/cups/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, pkgconfig, zlib, libjpeg, libpng, libtiff, pam, openssl
 , dbus, libusb, acl }:
 
-let version = "1.5.4"; in
+let version = "1.7.5"; in
 
 stdenv.mkDerivation {
   name = "cups-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "https://www.cups.org/software/${version}/cups-${version}-source.tar.bz2";
-    sha256 = "1rfhlv9b37120d6shngvyrcp99vh4a3lwdkrfanv3sjqid7068w0";
+    sha256 = "00mx4rpiqw9cwx46bd3hd5lcgmcxy63zfnmkr02smanv8xl4rjqq";
   };
 
   buildInputs = [ pkgconfig zlib libjpeg libpng libtiff libusb ]