about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-21 18:40:02 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-21 18:41:28 +0100
commit3869364bd39fb2073be3da1821f9dcd5fc90d993 (patch)
tree72dd3d06eb051e132eeca877637750a913f4fa0e /pkgs/applications/networking
parent85eec7443355f2ebc54dfeae0d7ecefbbfbd6660 (diff)
downloadnixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.tar
nixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.tar.gz
nixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.tar.bz2
nixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.tar.lz
nixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.tar.xz
nixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.tar.zst
nixlib-3869364bd39fb2073be3da1821f9dcd5fc90d993.zip
imapfilter: update from 2.5.4 to 2.5.6
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/imapfilter.nix18
1 files changed, 12 insertions, 6 deletions
diff --git a/pkgs/applications/networking/mailreaders/imapfilter.nix b/pkgs/applications/networking/mailreaders/imapfilter.nix
index 821de027d284..d42b71b23121 100644
--- a/pkgs/applications/networking/mailreaders/imapfilter.nix
+++ b/pkgs/applications/networking/mailreaders/imapfilter.nix
@@ -1,15 +1,21 @@
 { stdenv, fetchurl, openssl, lua, pcre }:
 
 stdenv.mkDerivation rec {
-  name = "imapfilter-2.5.4";
-  
+  name = "imapfilter-2.5.6";
+
   src = fetchurl {
-    url = "https://github.com/lefcha/imapfilter/archive/v2.5.4.tar.gz";
-    sha256 = "e5a9ee0e57e16d02ff2cbb37b67202a514121d2eb7fc63863174644ca8248769";
+    url = "https://github.com/lefcha/imapfilter/archive/v2.5.6.tar.gz";
+    sha256 = "0c94xdcnkk33d2filzkbraymfzm09np78486kqzqwidnnfllsk86";
   };
 
   makeFlagsArray = "PREFIX=$(out)";
-  
   propagatedBuildInputs = [ openssl pcre lua ];
-}
 
+  meta = {
+    homepage = "https://github.com/lefcha/imapfilter";
+    description = "Mail filtering utility";
+    license = stdenv.lib.licenses.mit;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
+  };
+}