From 21430431466df7ae54c9ecea7309f940d0a77c93 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 16 Feb 2017 09:48:26 -0600 Subject: [PATCH 1/4] isyncUnstable: download over https --- pkgs/tools/networking/isync/unstable.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/isync/unstable.nix b/pkgs/tools/networking/isync/unstable.nix index eae7167f2fe..9408546f6a0 100644 --- a/pkgs/tools/networking/isync/unstable.nix +++ b/pkgs/tools/networking/isync/unstable.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { rev = "46e792"; src = fetchgit { - url = "git://git.code.sf.net/p/isync/isync"; + url = "https://git.code.sf.net/p/isync/isync"; inherit rev; sha256 = "02bm5m3bwpfns7qdwfybyl4fwa146n55v67pdchkhxaqpa4ddws1"; }; From 88fec3005bf29145271e21e42b8d21c98d14e3f2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 16 Feb 2017 09:48:45 -0600 Subject: [PATCH 2/4] 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 9408546f6a0..c8e4231f7b5 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 ]; From 3994004a6f8db87f0deb99afc2081bcc3c975d77 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 16 Feb 2017 09:50:18 -0600 Subject: [PATCH 3/4] isyncUnstable: build with zlib support --- pkgs/tools/networking/isync/unstable.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/isync/unstable.nix b/pkgs/tools/networking/isync/unstable.nix index c8e4231f7b5..cf3882ad83b 100644 --- a/pkgs/tools/networking/isync/unstable.nix +++ b/pkgs/tools/networking/isync/unstable.nix @@ -1,4 +1,4 @@ -{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl +{ fetchgit, stdenv, openssl, pkgconfig, db, cyrus_sasl, zlib , autoconf, automake }: stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0i21cgmgm8acvd7xwdk9pll3kl6cxj9s1hakqzbwks8j4ncygwkj"; }; - buildInputs = [ openssl pkgconfig db cyrus_sasl autoconf automake ]; + buildInputs = [ openssl pkgconfig db cyrus_sasl zlib autoconf automake ]; preConfigure = '' touch ChangeLog From 953a1e76a25239577441443848506a5a4c46c457 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 16 Feb 2017 09:50:31 -0600 Subject: [PATCH 4/4] isyncUnstable: add ttuegel to maintainers --- pkgs/tools/networking/isync/unstable.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/tools/networking/isync/unstable.nix b/pkgs/tools/networking/isync/unstable.nix index cf3882ad83b..a20fa2fe737 100644 --- a/pkgs/tools/networking/isync/unstable.nix +++ b/pkgs/tools/networking/isync/unstable.nix @@ -22,8 +22,7 @@ stdenv.mkDerivation rec { homepage = http://isync.sourceforge.net/; description = "Free IMAP and MailDir mailbox synchronizer"; license = licenses.gpl2Plus; - - maintainers = with maintainers; [ the-kenny ]; + maintainers = with maintainers; [ the-kenny ttuegel ]; platforms = platforms.unix; }; }