From 88fec3005bf29145271e21e42b8d21c98d14e3f2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 16 Feb 2017 09:48:45 -0600 Subject: [PATCH] isyncUnstable: 2015-11-08 -> 20161218 The extra dashes are removed from the version number because Nix treats only the first component as the version, i.e. `2015-11-08` is version `2015` with two tags `-11` and `-08`. --- pkgs/tools/networking/isync/unstable.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/isync/unstable.nix b/pkgs/tools/networking/isync/unstable.nix index 9408546f6a05..c8e4231f7b5f 100644 --- a/pkgs/tools/networking/isync/unstable.nix +++ b/pkgs/tools/networking/isync/unstable.nix @@ -2,13 +2,13 @@ , autoconf, automake }: stdenv.mkDerivation rec { - name = "isync-git-2015-11-08"; - rev = "46e792"; + name = "isync-git-20161218"; + rev = "77acc268123b8233843ca9bc3dcf90669efde08f"; src = fetchgit { url = "https://git.code.sf.net/p/isync/isync"; inherit rev; - sha256 = "02bm5m3bwpfns7qdwfybyl4fwa146n55v67pdchkhxaqpa4ddws1"; + sha256 = "0i21cgmgm8acvd7xwdk9pll3kl6cxj9s1hakqzbwks8j4ncygwkj"; }; buildInputs = [ openssl pkgconfig db cyrus_sasl autoconf automake ];