nixpkgs/pkgs/applications/networking/mailreaders/imapfilter.nix

22 lines
610 B
Nix
Raw Normal View History

2013-05-31 18:18:42 +00:00
{ stdenv, fetchurl, openssl, lua, pcre }:
stdenv.mkDerivation rec {
2016-01-03 20:31:07 +00:00
name = "imapfilter-2.6.3";
2014-09-21 17:40:02 +00:00
2013-05-31 18:18:42 +00:00
src = fetchurl {
2016-01-03 20:31:07 +00:00
url = "https://github.com/lefcha/imapfilter/archive/v2.6.3.tar.gz";
sha256 = "0i6j9ilzh43b9gyqs3y3rv0d9yvbbg12gcbqbar9i92wdlnqcx0i";
2013-05-31 18:18:42 +00:00
};
makeFlagsArray = "PREFIX=$(out)";
propagatedBuildInputs = [ openssl pcre lua ];
2014-09-21 17:40:02 +00:00
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 ];
};
}