summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorLuis Pedro Coelho <luis@luispedro.org>2015-12-31 13:13:31 +0100
committerLuis Pedro Coelho <luis@luispedro.org>2015-12-31 13:13:31 +0100
commit7a6debc7914f92dee4d3090b30ace20bc7e82a18 (patch)
tree3070feaaeed042b9de6a4c565e7911adc4869c2f /pkgs/applications/office
parentb9bfedd64dbf4bebf4eba8a5fbb2df3857f11779 (diff)
downloadnixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.tar
nixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.tar.gz
nixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.tar.bz2
nixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.tar.lz
nixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.tar.xz
nixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.tar.zst
nixpkgs-7a6debc7914f92dee4d3090b30ace20bc7e82a18.zip
zotero: 4.0.26 -> 4.0.28.8
The previous version was too old for the current version of firefox and
syncing failed with an error: "req.sendAsBinary is not a function". This
new version solves this.

See https://forums.zotero.org/discussion/48500/bug-with-firefox-plugin/
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/zotero/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix
index be1729b57c9..d74e1ac4b7c 100644
--- a/pkgs/applications/office/zotero/default.nix
+++ b/pkgs/applications/office/zotero/default.nix
@@ -4,10 +4,10 @@ let
 
   xpi = fetchurl {
     url = "https://download.zotero.org/extension/zotero-${version}.xpi";
-    sha256 = "15wdbwnaxs748psjnxw40wld45npjjmvwx70c0jx2p63y6ks2gcx";
+    sha256 = "02h2ja08v8as4fawj683rh5rmxsjf5d0qmvqa77i176nm20y5s7s";
   };
 
-  version = "4.0.26";
+  version = "4.0.28";
 
 in
 stdenv.mkDerivation {
@@ -15,8 +15,8 @@ stdenv.mkDerivation {
   inherit version;
 
   src = fetchurl {
-    url = "https://github.com/zotero/zotero-standalone-build/archive/${version}.tar.gz";
-    sha256 = "11gbislxkhfycnii05v6d8h9qdp5rk5xag7kdnsih67gicnn467g";
+    url = "https://github.com/zotero/zotero-standalone-build/archive/4.0.28.8.tar.gz";
+    sha256 = "ab1fd5dde9bd2a6b6d31cc9a53183a04de3698f1273a943ef31ecc4c42808a68";
   };
 
   nativeBuildInputs = [ perl unzipNLS ];