summary refs log tree commit diff
path: root/pkgs/tools/networking/isync
diff options
context:
space:
mode:
authorAnthony Cowley <acowley@gmail.com>2017-10-17 20:33:33 -0400
committerAnthony Cowley <acowley@gmail.com>2017-10-17 20:33:33 -0400
commitedcdb957463f8728e2cb3a9e3e44e18ecba748e8 (patch)
treedb1ab4107f77c23afe32190f069f2d81a6614552 /pkgs/tools/networking/isync
parent5a21efdcdf7c3f4349192036e661247e2cd07916 (diff)
downloadnixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.tar
nixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.tar.gz
nixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.tar.bz2
nixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.tar.lz
nixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.tar.xz
nixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.tar.zst
nixlib-edcdb957463f8728e2cb3a9e3e44e18ecba748e8.zip
isync: 1.2.1 -> 1.3.0
Diffstat (limited to 'pkgs/tools/networking/isync')
-rw-r--r--pkgs/tools/networking/isync/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/networking/isync/default.nix b/pkgs/tools/networking/isync/default.nix
index 8b81e0696c23..7dcfc6b512fb 100644
--- a/pkgs/tools/networking/isync/default.nix
+++ b/pkgs/tools/networking/isync/default.nix
@@ -1,14 +1,14 @@
-{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl }:
+{ fetchurl, stdenv, openssl, pkgconfig, db, cyrus_sasl, perl }:
 
 stdenv.mkDerivation rec {
-  name = "isync-1.2.1";
+  name = "isync-1.3.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/isync/${name}.tar.gz";
-    sha256 = "1bij6nm06ghkg98n2pdyacam2fyg5y8f7ajw0d5653m0r4ldw5p7";
+    sha256 = "173wd7x8y5sp94slzwlnb7zhgs32r57zl9xspl2rf4g3fqwmhpwd";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkgconfig perl ];
   buildInputs = [ openssl db cyrus_sasl ];
 
   meta = with stdenv.lib; {