summary refs log tree commit diff
path: root/pkgs/development/libraries/poppler
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-07-23 18:19:22 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-07-23 18:19:22 +0200
commit744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e (patch)
tree014262c70e76af381bb1dc75db7d93227b3d00ed /pkgs/development/libraries/poppler
parent2988feba8cbcf87cc1156f924ad38d5918215a4c (diff)
downloadnixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.tar
nixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.tar.gz
nixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.tar.bz2
nixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.tar.lz
nixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.tar.xz
nixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.tar.zst
nixpkgs-744b380a0ec4ec9c2a958e5d1c42ac5da2f9759e.zip
poppler: 0.90.0 → 0.90.1:
 * Fix regression on PS conversion.
   Regression only happened on applications that are locale enabled
   i.e. Okular but not pdftops, when using a quite new lcms and
   the user locale uses , as decimal separator instead of .
 * Add UTF16LE support to TextStringToUCS4.
   Even if the standard clearly says it should be UTF16BE
Diffstat (limited to 'pkgs/development/libraries/poppler')
-rw-r--r--pkgs/development/libraries/poppler/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix
index 420cf731454..cd39e61a0cb 100644
--- a/pkgs/development/libraries/poppler/default.nix
+++ b/pkgs/development/libraries/poppler/default.nix
@@ -12,11 +12,11 @@ let
 in
 stdenv.mkDerivation rec {
   name = "poppler-${suffix}-${version}";
-  version = "0.90.0"; # beware: updates often break cups-filters build, check texlive and scribusUnstable too!
+  version = "0.90.1"; # beware: updates often break cups-filters build, check texlive and scribusUnstable too!
 
   src = fetchurl {
     url = "${meta.homepage}/poppler-${version}.tar.xz";
-    sha256 = "11cnk18qnhkhari1102syk5n3k7906jpm05cr8i4vdrh6fnv1vcl";
+    sha256 = "mE2C5y6RQY0oCIUpjIvchVov2SZl/VKhNFsnI14MccQ=";
   };
 
   outputs = [ "out" "dev" ];