about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCharles Strahan <charles.c.strahan@gmail.com>2014-12-21 23:37:10 -0500
committerCharles Strahan <charles.c.strahan@gmail.com>2014-12-24 22:48:01 -0500
commitebe75cf9c14229f797181d3644d46df587b19e16 (patch)
tree3d5eecb2946e18fa6c2eaa9a3e1f75897b4eeac8
parent86629f7c7ff72d45b51eba3753423cb3dede822a (diff)
downloadnixlib-ebe75cf9c14229f797181d3644d46df587b19e16.tar
nixlib-ebe75cf9c14229f797181d3644d46df587b19e16.tar.gz
nixlib-ebe75cf9c14229f797181d3644d46df587b19e16.tar.bz2
nixlib-ebe75cf9c14229f797181d3644d46df587b19e16.tar.lz
nixlib-ebe75cf9c14229f797181d3644d46df587b19e16.tar.xz
nixlib-ebe75cf9c14229f797181d3644d46df587b19e16.tar.zst
nixlib-ebe75cf9c14229f797181d3644d46df587b19e16.zip
libetpan: bump version up to 1.6
-rw-r--r--pkgs/development/libraries/libetpan/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/libraries/libetpan/default.nix b/pkgs/development/libraries/libetpan/default.nix
index e628490f159a..aa201106e3cf 100644
--- a/pkgs/development/libraries/libetpan/default.nix
+++ b/pkgs/development/libraries/libetpan/default.nix
@@ -1,24 +1,24 @@
 { autoconf, automake, fetchgit, libtool, stdenv, openssl }:
 
-let version = "1.5"; in
+let version = "1.6"; in
 
 stdenv.mkDerivation {
   name = "libetpan-${version}";
 
-  meta = with stdenv.lib; {
-    description = "An efficient, portable library for different kinds of mail access: IMAP, SMTP, POP, and NNTP";
-    homepage = http://www.etpan.org/libetpan.html;
-    license = licenses.bsd3;
-    platforms = platforms.linux;
-  };
-
   src = fetchgit {
     url = "git://github.com/dinhviethoa/libetpan";
     rev = "refs/tags/" + version;
-    sha256 = "bf9465121a0fb09418215ee3474a400ea5bc5ed05a6811a2978afe4905e140c9";
+    sha256 = "12n0vd0bwdyjcmwmpv1hdq5l04mqy6qfyy8mhsblddqaa1ah9qy8";
   };
 
   buildInputs = [ autoconf automake libtool openssl ];
 
   configureScript = "./autogen.sh";
+
+  meta = with stdenv.lib; {
+    description = "An efficient, portable library for different kinds of mail access: IMAP, SMTP, POP, and NNTP";
+    homepage = http://www.etpan.org/libetpan.html;
+    license = licenses.bsd3;
+    platforms = platforms.linux;
+  };
 }