summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/imapfilter.nix
blob: 821de027d284ed7447877704791a97c35655f1a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, fetchurl, openssl, lua, pcre }:

stdenv.mkDerivation rec {
  name = "imapfilter-2.5.4";
  
  src = fetchurl {
    url = "https://github.com/lefcha/imapfilter/archive/v2.5.4.tar.gz";
    sha256 = "e5a9ee0e57e16d02ff2cbb37b67202a514121d2eb7fc63863174644ca8248769";
  };

  makeFlagsArray = "PREFIX=$(out)";
  
  propagatedBuildInputs = [ openssl pcre lua ];
}